kmath/kmath-nd4j/build.gradle.kts

28 lines
762 B
Plaintext
Raw Permalink Normal View History

2020-09-20 12:45:26 +03:00
plugins {
2024-10-04 14:55:15 +03:00
id("space.kscience.gradle.mpp")
2020-09-20 12:45:26 +03:00
}
2020-06-11 10:10:39 +03:00
description = "ND4J NDStructure implementation and according NDAlgebra classes"
2024-10-04 14:55:15 +03:00
kscience {
jvm()
jvmMain {
api(project(":kmath-tensors"))
api("org.nd4j:nd4j-api:1.0.0-M2.1")
}
jvmTest{
implementation("org.nd4j:nd4j-native-platform:1.0.0-M1")
}
2020-06-11 08:16:22 +03:00
}
readme {
2024-02-17 21:32:26 +03:00
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" }
}