2020-09-20 12:45:26 +03:00
|
|
|
plugins {
|
2022-09-04 20:59:30 +03:00
|
|
|
id("space.kscience.gradle.jvm")
|
2020-09-20 12:45:26 +03:00
|
|
|
}
|
2020-06-11 10:10:39 +03:00
|
|
|
|
2021-05-20 19:32:56 +03:00
|
|
|
description = "ND4J NDStructure implementation and according NDAlgebra classes"
|
|
|
|
|
2020-06-11 10:10:39 +03:00
|
|
|
dependencies {
|
2021-05-13 20:37:33 +03:00
|
|
|
api(project(":kmath-tensors"))
|
2021-07-03 13:11:47 +03:00
|
|
|
api("org.nd4j:nd4j-api:1.0.0-M1")
|
|
|
|
testImplementation("org.nd4j:nd4j-native-platform:1.0.0-M1")
|
2021-10-06 12:25:32 +03:00
|
|
|
testImplementation("org.slf4j:slf4j-simple:1.7.32")
|
2020-06-11 08:16:22 +03:00
|
|
|
}
|
2020-10-29 11:39:53 +03:00
|
|
|
|
|
|
|
readme {
|
2022-07-29 15:58:02 +03:00
|
|
|
maturity = space.kscience.gradle.Maturity.EXPERIMENTAL
|
2020-10-29 11:39:53 +03:00
|
|
|
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
|
2021-05-13 20:37:33 +03:00
|
|
|
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" }
|
2020-10-29 11:39:53 +03:00
|
|
|
}
|