Popularity
7.2
Stable
Activity
8.3
Declining
469
14
47

Programming language: Kotlin
License: Apache License 2.0
Tags: Science    
Latest version: v0.2.0

kmath alternatives and similar libraries

Based on the "Science" category.
Alternatively, view kmath alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of kmath or a related project?

Add another 'Science' Library

README

JetBrains Research DOI Gradle build Maven Central Space

KMath

Could be pronounced as key-math. The Kotlin Mathematics library was initially intended as a Kotlin-based analog to Python's NumPy library. Later we found that kotlin is much more flexible language and allows superior architecture designs. In contrast to numpy and scipy it is modular and has a lightweight core. The numpy-like experience could be achieved with kmath-for-real extension module.

Documentation site (WIP)

Publications and talks

Goal

  • Provide a flexible and powerful API to work with mathematics abstractions in Kotlin-multiplatform (JVM, JS and Native).
  • Provide basic multiplatform implementations for those abstractions (without significant performance optimization).
  • Provide bindings and wrappers with those abstractions for popular optimized platform libraries.

Non-goals

  • Be like NumPy. It was the idea at the beginning, but we decided that we can do better in terms of API.
  • Provide the best performance out of the box. We have specialized libraries for that. Need only API wrappers for them.
  • Cover all cases as immediately and in one bundle. We will modularize everything and add new features gradually.
  • Provide specialized behavior in the core. API is made generic on purpose, so one needs to specialize for types, like for Double in the core. For that we will have specialization modules like kmath-for-real, which will give better experience for those, who want to work with specific types.

Features and stability

KMath is a modular library. Different modules provide different features with different API stability guarantees. All core modules are released with the same version, but with different API change policy. The features are described in module definitions below. The module stability could have following levels:

  • PROTOTYPE. On this level there are no compatibility guarantees. All methods and classes form those modules could break any moment. You can still use it, but be sure to fix the specific version.
  • EXPERIMENTAL. The general API is decided, but some changes could be made. Volatile API is marked with @UnstableKmathAPI or other stability warning annotations.
  • DEVELOPMENT. API breaking genrally follows semantic versioning ideology. There could be changes in minor versions, but not in patch versions. API is protected with binary-compatibility-validator tool.
  • STABLE. The API stabilized. Breaking changes are allowed only in major releases.

<!--Current feature list is here-->

<!--* Array-like structures Full support of many-dimensional array-like structures --> <!--including mixed arithmetic operations and function operations over arrays and numbers (with the added benefit of static type checking).-->

<!--* Histograms Fast multi-dimensional histograms.-->

<!--* Streaming Streaming operations on mathematical objects and objects buffers.-->

<!--* Type-safe dimensions Type-safe dimensions for matrix operations.-->

<!--* Commons-math wrapper It is planned to gradually wrap most parts of --> <!--Apache commons-math library in Kotlin code and maybe rewrite some --> <!--parts to better suit the Kotlin programming paradigm, however there is no established roadmap for that. Feel free to --> <!--submit a feature request if you want something to be implemented first.--> <!-- --> <!--## Planned features-->

<!--* Messaging A mathematical notation to support multi-language and multi-node communication for mathematical tasks.-->

<!--* Array statistics -->

<!--* Integration Univariate and multivariate integration framework.-->

<!--* Probability and distributions-->

<!--* Fitting Non-linear curve fitting facilities-->

Modules

  • [benchmarks](benchmarks)

    Maturity: EXPERIMENTAL

  • [examples](examples)

    Maturity: EXPERIMENTAL

  • [kmath-ast](kmath-ast)

    Maturity: EXPERIMENTAL

    Features:

    • [expression-language](kmath-ast/src/commonMain/kotlin/space/kscience/kmath/ast/parser.kt) : Expression language and its parser
    • [mst-jvm-codegen](kmath-ast/src/jvmMain/kotlin/space/kscience/kmath/asm/asm.kt) : Dynamic MST to JVM bytecode compiler
    • [mst-js-codegen](kmath-ast/src/jsMain/kotlin/space/kscience/kmath/estree/estree.kt) : Dynamic MST to JS compiler
    • [rendering](kmath-ast/src/commonMain/kotlin/space/kscience/kmath/ast/rendering/MathRenderer.kt) : Extendable MST rendering
  • [kmath-commons](kmath-commons)

    Maturity: EXPERIMENTAL

  • [kmath-complex](kmath-complex)

    Complex numbers and quaternions.

    Maturity: PROTOTYPE

    Features:

    • [complex](kmath-complex/src/commonMain/kotlin/space/kscience/kmath/complex/Complex.kt) : Complex Numbers
    • [quaternion](kmath-complex/src/commonMain/kotlin/space/kscience/kmath/complex/Quaternion.kt) : Quaternions
  • ### [kmath-core](kmath-core) > Core classes, algebra definitions, basic linear algebra > > Maturity: DEVELOPMENT > > Features: > - [algebras](kmath-core/src/commonMain/kotlin/space/kscience/kmath/operations/Algebra.kt) : Algebraic structures like rings, spaces and fields. > - [nd](kmath-core/src/commonMain/kotlin/space/kscience/kmath/structures/StructureND.kt) : Many-dimensional structures and operations on them. > - [linear](kmath-core/src/commonMain/kotlin/space/kscience/kmath/operations/Algebra.kt) : Basic linear algebra operations (sums, products, etc.), backed by the Space API. Advanced linear algebra operations like matrix inversion and LU decomposition. > - [buffers](kmath-core/src/commonMain/kotlin/space/kscience/kmath/structures/Buffers.kt) : One-dimensional structure > - [expressions](kmath-core/src/commonMain/kotlin/space/kscience/kmath/expressions) : 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. > - [domains](kmath-core/src/commonMain/kotlin/space/kscience/kmath/domains) : Domains > - [autodif](kmath-core/src/commonMain/kotlin/space/kscience/kmath/expressions/SimpleAutoDiff.kt) : Automatic differentiation
  • [kmath-coroutines](kmath-coroutines)

    Maturity: EXPERIMENTAL

  • [kmath-dimensions](kmath-dimensions)

    Maturity: PROTOTYPE

  • [kmath-ejml](kmath-ejml)

    Maturity: PROTOTYPE

    Features:

    • [ejml-vector](kmath-ejml/src/main/kotlin/space/kscience/kmath/ejml/EjmlVector.kt) : Point implementations.
    • [ejml-matrix](kmath-ejml/src/main/kotlin/space/kscience/kmath/ejml/EjmlMatrix.kt) : Matrix implementation.
    • [ejml-linear-space](kmath-ejml/src/main/kotlin/space/kscience/kmath/ejml/EjmlLinearSpace.kt) : LinearSpace implementations.
  • ### [kmath-for-real](kmath-for-real) > Extension module that should be used to achieve numpy-like behavior. All operations are specialized to work with Double numbers without declaring algebraic contexts. One can still use generic algebras though. > > Maturity: EXPERIMENTAL > > Features: > - [DoubleVector](kmath-for-real/src/commonMain/kotlin/space/kscience/kmath/real/DoubleVector.kt) : Numpy-like operations for Buffers/Points > - [DoubleMatrix](kmath-for-real/src/commonMain/kotlin/space/kscience/kmath/real/DoubleMatrix.kt) : Numpy-like operations for 2d real structures > - [grids](kmath-for-real/src/commonMain/kotlin/space/kscience/kmath/structures/grids.kt) : Uniform grid generators
  • ### [kmath-functions](kmath-functions) > Functions, integration and interpolation > > Maturity: EXPERIMENTAL > > Features: > - [piecewise](kmath-functions/src/commonMain/kotlin/space/kscience/kmath/functions/Piecewise.kt) : Piecewise functions. > - [polynomials](kmath-functions/src/commonMain/kotlin/space/kscience/kmath/functions/Polynomial.kt) : Polynomial functions. > - [linear interpolation](kmath-functions/src/commonMain/kotlin/space/kscience/kmath/interpolation/LinearInterpolator.kt) : Linear XY interpolator. > - [spline interpolation](kmath-functions/src/commonMain/kotlin/space/kscience/kmath/interpolation/SplineInterpolator.kt) : Cubic spline XY interpolator. > - [integration](kmath-functions/#) : Univariate and multivariate quadratures
  • [kmath-geometry](kmath-geometry)

    Maturity: PROTOTYPE

  • [kmath-histograms](kmath-histograms)

    Maturity: PROTOTYPE

  • [kmath-jupyter](kmath-jupyter)

    Maturity: PROTOTYPE

  • [kmath-kotlingrad](kmath-kotlingrad)

    Maturity: PROTOTYPE

  • [kmath-memory](kmath-memory)

    An API and basic implementation for arranging objects in a continous memory block.

    Maturity: DEVELOPMENT

  • [kmath-nd4j](kmath-nd4j)

    ND4J NDStructure implementation and according NDAlgebra classes

    Maturity: EXPERIMENTAL

    Features:

    • [nd4jarraystructure](kmath-nd4j/#) : NDStructure wrapper for INDArray
    • [nd4jarrayrings](kmath-nd4j/#) : Rings over Nd4jArrayStructure of Int and Long
    • [nd4jarrayfields](kmath-nd4j/#) : Fields over Nd4jArrayStructure of Float and Double
  • [kmath-stat](kmath-stat)

    Maturity: EXPERIMENTAL

  • [kmath-tensors](kmath-tensors)

    Maturity: PROTOTYPE

    Features:

    • [tensor algebra](kmath-tensors/src/commonMain/kotlin/space/kscience/kmath/tensors/api/TensorAlgebra.kt) : Basic linear algebra operations on tensors (plus, dot, etc.)
    • [tensor algebra with broadcasting](kmath-tensors/src/commonMain/kotlin/space/kscience/kmath/tensors/core/algebras/BroadcastDoubleTensorAlgebra.kt) : Basic linear algebra operations implemented with broadcasting.
    • [linear algebra operations](kmath-tensors/src/commonMain/kotlin/space/kscience/kmath/tensors/api/LinearOpsTensorAlgebra.kt) : Advanced linear algebra operations like LU decomposition, SVD, etc.
  • ### [kmath-viktor](kmath-viktor) > > > Maturity: DEVELOPMENT

Multi-platform support

KMath is developed as a multi-platform library, which means that most of the interfaces are declared in the common source sets and implemented there wherever it is possible. In some cases, features are delegated to platform-specific implementations even if they could be provided in the common module for performance reasons. Currently, the Kotlin/JVM is the primary platform, however Kotlin/Native and Kotlin/JS contributions and feedback are also welcome.

Performance

Calculation performance is one of major goals of KMath in the future, but in some cases it is impossible to achieve both performance and flexibility.

We expect to focus on creating convenient universal API first and then work on increasing performance for specific cases. We expect the worst KMath benchmarks will perform better than native Python, but worse than optimized native/SciPy (mostly due to boxing operations on primitive numbers). The best performance of optimized parts could be better than SciPy.

Requirements

KMath currently relies on JDK 11 for compilation and execution of Kotlin-JVM part. We recommend to use GraalVM-CE 11 for execution in order to get better performance.

Repositories

Release and development artifacts are accessible from mipt-npm Space repository https://maven.pkg.jetbrains.space/mipt-npm/p/sci/maven (see documentation of Kotlin Multiplatform for more details). The repository could be reached through repo.kotlin.link proxy:

repositories {
    maven("https://repo.kotlin.link")
}

dependencies {
    api("space.kscience:kmath-core:0.3.0-dev-8")
    // api("space.kscience:kmath-core-jvm:0.3.0-dev-8") for jvm-specific version
}

Gradle 6.0+ is required for multiplatform artifacts.

Contributing

The project requires a lot of additional work. The most important thing we need is a feedback about what features are required the most. Feel free to create feature requests. We are also welcome to code contributions, especially in issues marked with waiting for a hero label.