2020-10-29 11:39:53 +03:00
|
|
|
import ru.mipt.npm.gradle.Maturity
|
|
|
|
|
2020-09-20 12:45:26 +03:00
|
|
|
plugins {
|
2021-02-21 16:13:40 +03:00
|
|
|
id("ru.mipt.npm.gradle.jvm")
|
2020-09-20 12:45:26 +03:00
|
|
|
}
|
2020-06-11 10:10:39 +03:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api(project(":kmath-core"))
|
|
|
|
api("org.nd4j:nd4j-api:1.0.0-beta7")
|
|
|
|
testImplementation("org.deeplearning4j:deeplearning4j-core:1.0.0-beta7")
|
|
|
|
testImplementation("org.nd4j:nd4j-native-platform:1.0.0-beta7")
|
|
|
|
testImplementation("org.slf4j:slf4j-simple:1.7.30")
|
2020-06-11 08:16:22 +03:00
|
|
|
}
|
2020-10-29 11:39:53 +03:00
|
|
|
|
|
|
|
readme {
|
|
|
|
description = "ND4J NDStructure implementation and according NDAlgebra classes"
|
|
|
|
maturity = Maturity.EXPERIMENTAL
|
|
|
|
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
|
|
|
|
|
|
|
|
feature(
|
2020-10-29 11:44:30 +03:00
|
|
|
id = "nd4jarraystructure",
|
2021-03-16 22:46:22 +03:00
|
|
|
description = "NDStructure wrapper for INDArray"
|
2020-10-29 11:39:53 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
feature(
|
|
|
|
id = "nd4jarrayrings",
|
2021-03-16 22:46:22 +03:00
|
|
|
description = "Rings over Nd4jArrayStructure of Int and Long"
|
2020-10-29 11:39:53 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
feature(
|
|
|
|
id = "nd4jarrayfields",
|
2021-03-16 22:46:22 +03:00
|
|
|
description = "Fields over Nd4jArrayStructure of Float and Double"
|
2020-10-29 11:39:53 +03:00
|
|
|
)
|
|
|
|
}
|