2019-06-08 16:25:51 +03:00
|
|
|
plugins {
|
|
|
|
kotlin("jvm")
|
|
|
|
}
|
|
|
|
|
2020-11-01 21:08:55 +03:00
|
|
|
repositories {
|
2021-04-16 22:43:10 +03:00
|
|
|
mavenCentral()
|
2021-02-21 16:13:40 +03:00
|
|
|
maven("https://repo.kotlin.link")
|
2020-11-01 21:08:55 +03:00
|
|
|
maven("https://clojars.org/repo")
|
|
|
|
maven("https://jitpack.io")
|
2021-04-28 14:03:28 +03:00
|
|
|
maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-js-wrappers")
|
|
|
|
maven("http://logicrunch.research.it.uu.se/maven") {
|
2021-04-10 15:20:09 +03:00
|
|
|
isAllowInsecureProtocol = true
|
|
|
|
}
|
2020-11-01 21:08:55 +03:00
|
|
|
}
|
|
|
|
|
2019-06-08 16:25:51 +03:00
|
|
|
dependencies {
|
2020-10-12 18:42:34 +03:00
|
|
|
implementation(project(":kmath-ast"))
|
2020-10-13 15:47:07 +03:00
|
|
|
implementation(project(":kmath-kotlingrad"))
|
2019-06-08 16:25:51 +03:00
|
|
|
implementation(project(":kmath-core"))
|
|
|
|
implementation(project(":kmath-coroutines"))
|
|
|
|
implementation(project(":kmath-commons"))
|
2021-01-06 17:01:37 +03:00
|
|
|
implementation(project(":kmath-complex"))
|
2021-08-16 09:55:03 +03:00
|
|
|
implementation(project(":kmath-optimization"))
|
2020-10-28 09:16:21 +03:00
|
|
|
implementation(project(":kmath-stat"))
|
2019-12-08 15:48:25 +03:00
|
|
|
implementation(project(":kmath-viktor"))
|
2019-12-09 19:52:00 +03:00
|
|
|
implementation(project(":kmath-dimensions"))
|
2020-09-09 19:42:43 +03:00
|
|
|
implementation(project(":kmath-ejml"))
|
2020-10-29 19:59:36 +03:00
|
|
|
implementation(project(":kmath-nd4j"))
|
2021-04-26 17:27:50 +03:00
|
|
|
implementation(project(":kmath-tensors"))
|
2021-05-21 11:47:35 +03:00
|
|
|
implementation(project(":kmath-symja"))
|
2020-11-29 13:32:20 +03:00
|
|
|
implementation(project(":kmath-for-real"))
|
2021-10-16 11:10:34 +03:00
|
|
|
//jafama
|
|
|
|
implementation(project(":kmath-jafama"))
|
|
|
|
//multik
|
|
|
|
implementation(projects.kmathMultik)
|
|
|
|
|
2020-11-29 13:32:20 +03:00
|
|
|
|
2020-10-29 19:59:36 +03:00
|
|
|
implementation("org.nd4j:nd4j-native:1.0.0-beta7")
|
|
|
|
|
|
|
|
// uncomment if your system supports AVX2
|
|
|
|
// val os = System.getProperty("os.name")
|
|
|
|
//
|
|
|
|
// if (System.getProperty("os.arch") in arrayOf("x86_64", "amd64")) when {
|
|
|
|
// os.startsWith("Windows") -> implementation("org.nd4j:nd4j-native:1.0.0-beta7:windows-x86_64-avx2")
|
|
|
|
// os == "Linux" -> implementation("org.nd4j:nd4j-native:1.0.0-beta7:linux-x86_64-avx2")
|
|
|
|
// os == "Mac OS X" -> implementation("org.nd4j:nd4j-native:1.0.0-beta7:macosx-x86_64-avx2")
|
|
|
|
// } else
|
|
|
|
implementation("org.nd4j:nd4j-native-platform:1.0.0-beta7")
|
|
|
|
|
2021-10-16 11:10:34 +03:00
|
|
|
// multik implementation
|
|
|
|
implementation("org.jetbrains.kotlinx:multik-default:0.1.0")
|
|
|
|
|
|
|
|
implementation("org.slf4j:slf4j-simple:1.7.32")
|
2020-11-29 13:32:20 +03:00
|
|
|
// plotting
|
2021-10-16 11:10:34 +03:00
|
|
|
implementation("space.kscience:plotlykt-server:0.5.0")
|
2019-06-08 16:25:51 +03:00
|
|
|
}
|
|
|
|
|
2020-08-22 12:49:21 +03:00
|
|
|
kotlin.sourceSets.all {
|
|
|
|
with(languageSettings) {
|
|
|
|
useExperimentalAnnotation("kotlin.contracts.ExperimentalContracts")
|
|
|
|
useExperimentalAnnotation("kotlin.ExperimentalUnsignedTypes")
|
2021-03-30 22:24:21 +03:00
|
|
|
useExperimentalAnnotation("space.kscience.kmath.misc.UnstableKMathAPI")
|
2020-08-22 12:49:21 +03:00
|
|
|
}
|
|
|
|
}
|
2019-06-08 16:25:51 +03:00
|
|
|
|
2021-04-20 17:39:45 +03:00
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
2021-04-14 23:26:21 +03:00
|
|
|
kotlinOptions{
|
|
|
|
jvmTarget = "11"
|
2021-05-16 14:20:28 +03:00
|
|
|
freeCompilerArgs = freeCompilerArgs + "-Xjvm-default=all" + "-Xopt-in=kotlin.RequiresOptIn"
|
2021-04-14 23:26:21 +03:00
|
|
|
}
|
2020-10-29 19:59:36 +03:00
|
|
|
}
|
2021-01-30 20:12:14 +03:00
|
|
|
|
2021-03-16 20:56:20 +03:00
|
|
|
readme {
|
2021-04-20 17:39:45 +03:00
|
|
|
maturity = ru.mipt.npm.gradle.Maturity.EXPERIMENTAL
|
2021-01-30 20:12:14 +03:00
|
|
|
}
|