forked from kscience/kmath
139 lines
4.0 KiB
Plaintext
139 lines
4.0 KiB
Plaintext
@file:Suppress("UNUSED_VARIABLE")
|
|
|
|
import space.kscience.kmath.benchmarks.addBenchmarkProperties
|
|
|
|
plugins {
|
|
kotlin("multiplatform")
|
|
kotlin("plugin.allopen")
|
|
id("org.jetbrains.kotlinx.benchmark")
|
|
}
|
|
|
|
allOpen.annotation("org.openjdk.jmh.annotations.State")
|
|
sourceSets.register("benchmarks")
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://repo.kotlin.link")
|
|
maven("https://clojars.org/repo")
|
|
maven("https://jitpack.io")
|
|
|
|
maven("http://logicrunch.research.it.uu.se/maven") {
|
|
isAllowInsecureProtocol = true
|
|
}
|
|
}
|
|
|
|
kotlin {
|
|
jvm()
|
|
|
|
sourceSets {
|
|
val commonMain by getting {
|
|
dependencies {
|
|
implementation(project(":kmath-ast"))
|
|
implementation(project(":kmath-core"))
|
|
implementation(project(":kmath-coroutines"))
|
|
implementation(project(":kmath-complex"))
|
|
implementation(project(":kmath-stat"))
|
|
implementation(project(":kmath-dimensions"))
|
|
implementation(project(":kmath-for-real"))
|
|
implementation(project(":kmath-jafama"))
|
|
implementation("org.jetbrains.kotlinx:kotlinx-benchmark-runtime:0.3.1")
|
|
}
|
|
}
|
|
|
|
val jvmMain by getting {
|
|
dependencies {
|
|
implementation(project(":kmath-commons"))
|
|
implementation(project(":kmath-ejml"))
|
|
implementation(project(":kmath-nd4j"))
|
|
implementation(project(":kmath-kotlingrad"))
|
|
implementation(project(":kmath-viktor"))
|
|
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")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Configure benchmark
|
|
benchmark {
|
|
// Setup configurations
|
|
targets {
|
|
register("jvm")
|
|
}
|
|
|
|
fun kotlinx.benchmark.gradle.BenchmarkConfiguration.commonConfiguration() {
|
|
warmups = 1
|
|
iterations = 5
|
|
iterationTime = 1000
|
|
iterationTimeUnit = "ms"
|
|
}
|
|
|
|
configurations.register("buffer") {
|
|
commonConfiguration()
|
|
include("BufferBenchmark")
|
|
}
|
|
|
|
configurations.register("dot") {
|
|
commonConfiguration()
|
|
include("DotBenchmark")
|
|
}
|
|
|
|
configurations.register("expressions") {
|
|
commonConfiguration()
|
|
include("ExpressionsInterpretersBenchmark")
|
|
}
|
|
|
|
configurations.register("matrixInverse") {
|
|
commonConfiguration()
|
|
include("MatrixInverseBenchmark")
|
|
}
|
|
|
|
configurations.register("bigInt") {
|
|
commonConfiguration()
|
|
include("BigIntBenchmark")
|
|
}
|
|
|
|
configurations.register("jafamaDouble") {
|
|
commonConfiguration()
|
|
include("JafamaBenchmark")
|
|
}
|
|
}
|
|
|
|
// Fix kotlinx-benchmarks bug
|
|
afterEvaluate {
|
|
val jvmBenchmarkJar by tasks.getting(org.gradle.jvm.tasks.Jar::class) {
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
}
|
|
}
|
|
|
|
|
|
kotlin.sourceSets.all {
|
|
with(languageSettings) {
|
|
useExperimentalAnnotation("kotlin.contracts.ExperimentalContracts")
|
|
useExperimentalAnnotation("kotlin.ExperimentalUnsignedTypes")
|
|
useExperimentalAnnotation("space.kscience.kmath.misc.UnstableKMathAPI")
|
|
}
|
|
}
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
|
kotlinOptions {
|
|
jvmTarget = "11"
|
|
freeCompilerArgs = freeCompilerArgs + "-Xjvm-default=all"
|
|
}
|
|
}
|
|
|
|
|
|
readme {
|
|
maturity = ru.mipt.npm.gradle.Maturity.EXPERIMENTAL
|
|
}
|
|
|
|
addBenchmarkProperties()
|