kmath/README.md

115 lines
4.5 KiB
Markdown
Raw Normal View History

2019-05-31 13:15:04 +03:00
Bintray: [ ![Download](https://api.bintray.com/packages/mipt-npm/scientifik/kmath-core/images/download.svg) ](https://bintray.com/mipt-npm/scientifik/kmath-core/_latestVersion)
2019-02-22 13:52:35 +03:00
2018-08-03 09:31:24 +03:00
# KMath
2019-06-09 10:54:45 +03:00
Could be pronounced as `key-math`.
2018-12-28 07:06:01 +03:00
The Kotlin MATHematics library is intended as a Kotlin-based analog to Python's `numpy` library. In contrast to `numpy` and `scipy` it is modular and has a lightweight core.
2018-08-03 09:31:24 +03:00
## Features
2019-02-22 13:52:35 +03:00
Actual feature list is [here](doc/features.md)
2018-08-03 09:31:24 +03:00
* **Algebra**
2018-12-28 07:06:01 +03:00
* Algebraic structures like rings, spaces and field (**TODO** add example to wiki)
* Basic linear algebra operations (sums, products, etc.), backed by the `Space` API.
* Complex numbers backed by the `Field` API (meaning that they will be usable in any structure like vectors and N-dimensional arrays).
2019-02-22 13:52:35 +03:00
* Advanced linear algebra operations like matrix inversion and LU decomposition.
2019-06-08 16:52:42 +03:00
* **Array-like structures** Full support of many-dimensional array-like structures
2019-02-22 13:52:35 +03:00
including mixed arithmetic operations and function operations over arrays and numbers (with the added benefit of static type checking).
2018-08-03 09:31:24 +03:00
2019-02-22 13:52:35 +03:00
* **Expressions** By writing a single mathematical expression
2019-02-22 22:00:34 +03:00
once, users will be able to apply different types of objects to the expression by providing a context. Expressions
2018-12-28 07:06:01 +03:00
can be used for a wide variety of purposes from high performance calculations to code generation.
2018-08-25 20:58:26 +03:00
2019-02-22 13:52:35 +03:00
* **Histograms** Fast multi-dimensional histograms.
2019-06-08 16:52:42 +03:00
* **Streaming** Streaming operations on mathematical objects and objects buffers.
2018-08-24 21:11:59 +03:00
2019-02-22 13:52:35 +03:00
* **Commons-math wrapper** It is planned to gradually wrap most parts of [Apache commons-math](http://commons.apache.org/proper/commons-math/)
library in Kotlin code and maybe rewrite some parts to better suit the Kotlin programming paradigm, however there is no fixed roadmap for that. Feel free
to submit a feature request if you want something to be done first.
2019-06-08 16:52:42 +03:00
* **Koma wrapper** [Koma](https://github.com/kyonifer/koma) is a well established numerics library in Kotlin, specifically linear algebra.
2019-02-22 13:52:35 +03:00
The plan is to have wrappers for koma implementations for compatibility with kmath API.
## Planned features
2018-08-24 21:11:59 +03:00
2018-09-30 17:25:11 +03:00
* **Messaging** A mathematical notation to support multi-language and multi-node communication for mathematical tasks.
2018-08-24 21:11:59 +03:00
2019-02-22 13:52:35 +03:00
* **Array statistics**
* **Integration** Univariate and multivariate integration framework.
* **Probability and distributions**
* **Fitting** Non-linear curve fitting facilities
2018-08-03 09:31:24 +03:00
## Multi-platform support
2018-12-28 07:06:01 +03:00
KMath is developed as a multi-platform library, which means that most of interfaces are declared in the [common module](kmath-core/src/commonMain).
Implementation is also done in the common module wherever possible. In some cases, features are delegated to
platform-specific implementations even if they could be done in the common module for performance reasons.
Currently, the JVM is the main focus of development, however Kotlin/Native and Kotlin/JS contributions are also welcome.
2018-08-03 09:31:24 +03:00
## Performance
2018-12-28 07:06:01 +03:00
Calculation performance is one of major goals of KMath in the future, but in some cases it is not possible 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 should be better than SciPy.
2018-08-03 09:31:24 +03:00
## Releases
2018-09-30 17:18:04 +03:00
2019-02-22 13:52:35 +03:00
Working builds can be obtained here: [![](https://jitpack.io/v/altavir/kmath.svg)](https://jitpack.io/#altavir/kmath).
### Development
2018-12-28 07:06:01 +03:00
The project is currently in pre-release stage. Nightly builds can be used by adding an additional repository to the Gradle config like so:
2018-09-30 17:18:04 +03:00
```groovy
repositories {
maven { url = "http://npm.mipt.ru:8081/artifactory/gradle-dev" }
mavenCentral()
}
```
2018-12-28 07:06:01 +03:00
or for the Gradle Kotlin DSL:
2018-09-30 17:18:04 +03:00
```kotlin
repositories {
maven("http://npm.mipt.ru:8081/artifactory/gradle-dev")
2018-09-30 17:18:04 +03:00
mavenCentral()
}
```
2018-12-28 07:06:01 +03:00
Then use a regular dependency like so:
2018-09-30 17:18:04 +03:00
```groovy
2019-02-21 08:58:55 +03:00
api "scientifik:kmath-core-jvm:0.1.0-dev"
2018-09-30 17:18:04 +03:00
```
2018-12-28 07:06:01 +03:00
or in the Gradle Kotlin DSL:
2018-09-30 17:18:04 +03:00
```kotlin
2019-02-21 08:58:55 +03:00
api("scientifik:kmath-core-jvm:0.1.0-dev")
2018-09-30 17:18:04 +03:00
```
2019-02-22 13:52:35 +03:00
### Release
Release artifacts are accessible from bintray with following configuration:
```kotlin
repositories{
maven("https://dl.bintray.com/mipt-npm/scientifik")
}
dependencies{
api("scientifik:kmath-core-jvm:0.1.0")
}
```
2018-08-03 09:31:24 +03:00
## Contributing
2018-12-28 07:06:01 +03:00
2019-06-08 16:52:42 +03:00
The project requires a lot of additional work. Please feel free to contribute in any way and propose new features.