Changes for upcoming GSL extension project #148
Labels
No Label
bug
dependencies
discussion
documentation
duplicate
feature
good first issue
misc
performance
question
test
use case
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: kscience/kmath#148
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "gsl-experiment"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Minor changes related to benchmarks and EJML matrix, add GSL module, add wrapper for gsl_matrix, provide headers of gsl, configure cinterop at least for Linux and OSX, update GitHub Actions workflow
closes #142
handle should probably be private
That's true, but the current challenge is to build this at least
Currently, I can't even run cinterop in Actions
Suspended since Kotlin/Native and cinterop are too unstable and can't be used.
@altavir it works
@CommanderTvis is it possible to avoid installing packages system wide (with apt-get or brew)? You could directly dowload the artifacts from a public repository. For example for GSL you can use Anaconda: https://anaconda.org/anaconda/gsl/files
additional to
@ -7,6 +7,7 @@ kotlin.sourceSets {
languageSettings.apply {
useExperimentalAnnotation("kotlinx.coroutines.FlowPreview")
useExperimentalAnnotation("kotlinx.coroutines.ExperimentalCoroutinesApi")
useExperimentalAnnotation("kotlinx.coroutines.ObsoleteCoroutinesApi")
Do we need that?
@ -7,6 +7,7 @@ kotlin.sourceSets {
languageSettings.apply {
useExperimentalAnnotation("kotlinx.coroutines.FlowPreview")
useExperimentalAnnotation("kotlinx.coroutines.ExperimentalCoroutinesApi")
useExperimentalAnnotation("kotlinx.coroutines.ObsoleteCoroutinesApi")
This line removes compiler warning. It could have been placed to gradle-tools project, actually.
Oops