forked from kscience/kmath
75 lines
2.3 KiB
Plaintext
75 lines
2.3 KiB
Plaintext
import org.jetbrains.kotlin.allopen.gradle.AllOpenExtension
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
java
|
|
kotlin("jvm")
|
|
kotlin("plugin.allopen") version "1.3.72"
|
|
id("kotlinx.benchmark") version "0.2.0-dev-8"
|
|
}
|
|
|
|
configure<AllOpenExtension> {
|
|
annotation("org.openjdk.jmh.annotations.State")
|
|
}
|
|
|
|
repositories {
|
|
maven("http://dl.bintray.com/kyonifer/maven")
|
|
maven("https://dl.bintray.com/mipt-npm/scientifik")
|
|
maven("https://dl.bintray.com/mipt-npm/dev")
|
|
mavenCentral()
|
|
}
|
|
|
|
sourceSets {
|
|
register("benchmarks")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":kmath-ast"))
|
|
implementation(project(":kmath-core"))
|
|
implementation(project(":kmath-coroutines"))
|
|
implementation(project(":kmath-commons"))
|
|
implementation(project(":kmath-prob"))
|
|
implementation(project(":kmath-koma"))
|
|
implementation(project(":kmath-viktor"))
|
|
implementation(project(":kmath-dimensions"))
|
|
implementation(project(":kmath-bignum"))
|
|
implementation(project(":kmath-memory"))
|
|
implementation("com.kyonifer:koma-core-ejml:0.12")
|
|
implementation("org.jetbrains.kotlinx:kotlinx-io-jvm:0.2.0-npm-dev-6")
|
|
implementation("org.slf4j:slf4j-simple:1.7.30")
|
|
"benchmarksImplementation"("org.jetbrains.kotlinx:kotlinx.benchmark.runtime-jvm:0.2.0-dev-8")
|
|
"benchmarksImplementation"(sourceSets.main.get().output.plus(sourceSets.main.get().runtimeClasspath))
|
|
}
|
|
|
|
// Configure benchmark
|
|
benchmark {
|
|
// Setup configurations
|
|
targets {
|
|
// This one matches sourceSet name above
|
|
register("benchmarks")
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|
|
}
|
|
|
|
kotlin.sourceSets.all {
|
|
with(languageSettings) {
|
|
useExperimentalAnnotation("kotlin.contracts.ExperimentalContracts")
|
|
useExperimentalAnnotation("kotlin.ExperimentalUnsignedTypes")
|
|
}
|
|
}
|
|
|
|
tasks.withType<KotlinCompile> {
|
|
kotlinOptions {
|
|
jvmTarget = Scientifik.JVM_TARGET.toString()
|
|
freeCompilerArgs = freeCompilerArgs + "-Xopt-in=kotlin.RequiresOptIn"
|
|
}
|
|
}
|