kmath/kmath-core/build.gradle.kts

71 lines
2.2 KiB
Plaintext
Raw Normal View History

import ru.mipt.npm.gradle.Maturity
2020-09-25 10:13:38 +03:00
plugins {
2021-02-21 16:13:40 +03:00
id("ru.mipt.npm.gradle.mpp")
id("ru.mipt.npm.gradle.native")
2020-09-25 10:13:38 +03:00
}
2019-01-26 19:38:18 +03:00
kotlin.sourceSets {
commonMain {
dependencies {
api(project(":kmath-memory"))
}
}
2020-06-05 18:05:16 +03:00
}
2020-09-25 10:13:38 +03:00
readme {
description = "Core classes, algebra definitions, basic linear algebra"
maturity = Maturity.DEVELOPMENT
2020-09-26 12:15:11 +03:00
propertyByTemplate("artifact", rootProject.file("docs/templates/ARTIFACT-TEMPLATE.md"))
2020-09-25 10:13:38 +03:00
feature(
id = "algebras",
2021-01-30 20:12:14 +03:00
description = """
Algebraic structures like rings, spaces and fields.
""".trimIndent(),
2021-03-16 22:46:22 +03:00
ref = "src/commonMain/kotlin/space/kscience/kmath/operations/Algebra.kt"
2020-09-25 10:13:38 +03:00
)
2020-09-25 10:13:38 +03:00
feature(
id = "nd",
2021-01-30 20:12:14 +03:00
description = "Many-dimensional structures and operations on them.",
2021-03-16 22:46:22 +03:00
ref = "src/commonMain/kotlin/space/kscience/kmath/structures/StructureND.kt"
2020-09-25 10:13:38 +03:00
)
2021-01-30 20:12:14 +03:00
feature(
id = "linear",
description = """
Basic linear algebra operations (sums, products, etc.), backed by the `Space` API. Advanced linear algebra operations like matrix inversion and LU decomposition.
""".trimIndent(),
2021-03-16 22:46:22 +03:00
ref = "src/commonMain/kotlin/space/kscience/kmath/operations/Algebra.kt"
2021-01-30 20:12:14 +03:00
)
2020-09-25 10:13:38 +03:00
feature(
id = "buffers",
description = "One-dimensional structure",
2021-03-16 22:46:22 +03:00
ref = "src/commonMain/kotlin/space/kscience/kmath/structures/Buffers.kt"
2020-09-25 10:13:38 +03:00
)
2020-09-25 10:13:38 +03:00
feature(
id = "expressions",
2021-01-30 20:12:14 +03:00
description = """
By writing a single mathematical expression once, users will be able to apply different types of
objects to the expression by providing a context. Expressions can be used for a wide variety of purposes from high
performance calculations to code generation.
""".trimIndent(),
2021-03-16 22:46:22 +03:00
ref = "src/commonMain/kotlin/space/kscience/kmath/expressions"
2020-09-25 10:13:38 +03:00
)
2020-09-25 10:13:38 +03:00
feature(
id = "domains",
description = "Domains",
2021-03-16 22:46:22 +03:00
ref = "src/commonMain/kotlin/space/kscience/kmath/domains"
2020-09-25 10:13:38 +03:00
)
2020-09-25 10:13:38 +03:00
feature(
id = "autodif",
description = "Automatic differentiation",
2021-03-16 22:46:22 +03:00
ref = "src/commonMain/kotlin/space/kscience/kmath/expressions/SimpleAutoDiff.kt"
2020-09-25 10:13:38 +03:00
)
}