Add publishing to attributes-kt

This commit is contained in:
Alexander Nozik 2024-02-20 18:38:21 +03:00
parent fd9da63ef9
commit 32c5b3c10d
3 changed files with 13 additions and 10 deletions

View File

@ -1,5 +1,6 @@
plugins {
id("space.kscience.gradle.mpp")
`maven-publish`
}
version = "0.1.0"

View File

@ -25,6 +25,16 @@ import space.kscience.kmath.viktor.viktorAlgebra
@State(Scope.Benchmark)
internal class NDFieldBenchmark {
private companion object {
private const val dim = 1000
private const val n = 100
private val shape = ShapeND(dim, dim)
private val specializedField = Float64Field.ndAlgebra
private val genericField = BufferedFieldOpsND(Float64Field)
private val nd4jField = Float64Field.nd4j
private val viktorField = Float64Field.viktorAlgebra
}
@Benchmark
fun specializedFieldAdd(blackhole: Blackhole) = with(specializedField) {
var res: StructureND<Double> = one(shape)
@ -82,13 +92,5 @@ internal class NDFieldBenchmark {
// blackhole.consume(res)
// }
private companion object {
private const val dim = 1000
private const val n = 100
private val shape = ShapeND(dim, dim)
private val specializedField = Float64Field.ndAlgebra
private val genericField = BufferedFieldOpsND(Float64Field)
private val nd4jField = Float64Field.nd4j
private val viktorField = Float64Field.viktorAlgebra
}
}

View File

@ -14,7 +14,7 @@ allprojects {
}
group = "space.kscience"
version = "0.4.0"
version = "0.4.0-RC"
}
subprojects {