kmath/kmath-tensors/build.gradle.kts

51 lines
1.3 KiB
Plaintext
Raw Normal View History

2021-03-31 11:07:45 +03:00
plugins {
2022-09-04 20:59:30 +03:00
id("space.kscience.gradle.mpp")
}
kscience{
2023-02-03 19:32:53 +03:00
jvm()
js()
2022-09-04 20:59:30 +03:00
native()
2023-02-03 19:32:53 +03:00
2022-09-05 16:30:39 +03:00
dependencies {
api(projects.kmathCore)
api(projects.kmathStat)
}
2021-03-31 11:07:45 +03:00
}
kotlin.sourceSets {
2021-03-31 11:07:45 +03:00
commonMain {
dependencies {
api(project(":kmath-core"))
api(project(":kmath-stat"))
}
}
2022-09-11 15:27:38 +03:00
commonTest{
dependencies{
implementation(projects.testUtils)
}
}
2021-03-31 11:07:45 +03:00
}
readme {
2022-07-29 15:58:02 +03:00
maturity = space.kscience.gradle.Maturity.PROTOTYPE
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
feature(
id = "tensor algebra",
ref = "src/commonMain/kotlin/space/kscience/kmath/tensors/api/TensorAlgebra.kt"
) { "Basic linear algebra operations on tensors (plus, dot, etc.)" }
feature(
id = "tensor algebra with broadcasting",
ref = "src/commonMain/kotlin/space/kscience/kmath/tensors/core/BroadcastDoubleTensorAlgebra.kt"
) { "Basic linear algebra operations implemented with broadcasting." }
feature(
id = "linear algebra operations",
ref = "src/commonMain/kotlin/space/kscience/kmath/tensors/api/LinearOpsTensorAlgebra.kt"
) { "Advanced linear algebra operations like LU decomposition, SVD, etc." }
}