kmath/kmath-nd4j/build.gradle.kts

28 lines
731 B
Plaintext

plugins {
id("space.kscience.gradle.mpp")
}
description = "ND4J NDStructure implementation and according NDAlgebra classes"
kscience {
jvm()
jvmMain {
api(project(":kmath-tensors"))
api(libs.nd4j.api)
}
jvmTest {
implementation(libs.nd4j.native.platform)
}
}
readme {
maturity = space.kscience.gradle.Maturity.DEPRECATED
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
feature(id = "nd4jarraystructure") { "NDStructure wrapper for INDArray" }
feature(id = "nd4jarrayrings") { "Rings over Nd4jArrayStructure of Int and Long" }
feature(id = "nd4jarrayfields") { "Fields over Nd4jArrayStructure of Float and Double" }
}