kmath/examples/build.gradle.kts

63 lines
1.7 KiB
Plaintext
Raw Normal View History

2019-06-08 16:25:51 +03:00
import org.jetbrains.kotlin.allopen.gradle.AllOpenExtension
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
java
kotlin("jvm")
2020-04-03 22:29:23 +03:00
kotlin("plugin.allopen") version "1.3.71"
2019-12-09 19:52:00 +03:00
id("kotlinx.benchmark") version "0.2.0-dev-7"
2019-06-08 16:25:51 +03:00
}
configure<AllOpenExtension> {
annotation("org.openjdk.jmh.annotations.State")
}
repositories {
maven("http://dl.bintray.com/kyonifer/maven")
2020-04-03 22:29:23 +03:00
maven("https://dl.bintray.com/mipt-npm/scientifik")
maven("https://dl.bintray.com/mipt-npm/dev")
2019-06-08 16:25:51 +03:00
mavenCentral()
}
sourceSets {
register("benchmarks")
}
dependencies {
implementation(project(":kmath-core"))
implementation(project(":kmath-coroutines"))
implementation(project(":kmath-commons"))
2020-05-22 21:28:14 +03:00
implementation(project(":kmath-prob"))
2019-06-08 16:25:51 +03:00
implementation(project(":kmath-koma"))
2019-12-08 15:48:25 +03:00
implementation(project(":kmath-viktor"))
2019-12-09 19:52:00 +03:00
implementation(project(":kmath-dimensions"))
2019-06-08 16:25:51 +03:00
implementation("com.kyonifer:koma-core-ejml:0.12")
2020-04-03 22:29:23 +03:00
implementation("org.jetbrains.kotlinx:kotlinx-io-jvm:0.2.0-npm-dev-6")
2019-12-09 19:52:00 +03:00
implementation("org.jetbrains.kotlinx:kotlinx.benchmark.runtime:0.2.0-dev-7")
2019-06-08 16:25:51 +03:00
"benchmarksCompile"(sourceSets.main.get().compileClasspath)
}
// Configure benchmark
benchmark {
// Setup configurations
targets {
// This one matches sourceSet name above
register("benchmarks")
2019-06-08 16:25:51 +03:00
}
configurations {
register("fast") {
warmups = 5 // number of warmup iterations
iterations = 3 // number of iterations
iterationTime = 500 // time in seconds per iteration
iterationTimeUnit = "ms" // time unity for iterationTime, default is seconds
}
}
}
tasks.withType<KotlinCompile> {
kotlinOptions {
2020-05-06 10:50:08 +03:00
jvmTarget = Scientifik.JVM_TARGET.toString()
2019-06-08 16:25:51 +03:00
}
}