kmath/kmath-nd4j/build.gradle.kts

23 lines
842 B
Plaintext
Raw Normal View History

2020-09-20 12:45:26 +03:00
plugins {
2021-04-14 12:40:26 +03:00
kotlin("jvm")
id("ru.mipt.npm.gradle.common")
2020-09-20 12:45:26 +03:00
}
2020-06-11 10:10:39 +03:00
description = "ND4J NDStructure implementation and according NDAlgebra classes"
2020-06-11 10:10:39 +03:00
dependencies {
api(project(":kmath-tensors"))
2020-06-11 10:10:39 +03:00
api("org.nd4j:nd4j-api:1.0.0-beta7")
2021-04-19 09:31:56 +03:00
testImplementation("org.nd4j:nd4j-native:1.0.0-beta7")
2020-06-11 10:10:39 +03:00
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
}
readme {
maturity = ru.mipt.npm.gradle.Maturity.EXPERIMENTAL
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" }
}