kmath
kmath copied to clipboard
Kotlin mathematics extensions library
Create a separate project for low-level multiplatform memory management. Let's call it `memory.kt`. Implement several memory backends: * ByteBuffer for JVM * WebGL buffers for JS * ByteArray for Native...
The used multiplication method is naive. Its time complexity is *O(n2)*. Even Karatsuba (that is used in `java.util.math.BigInteger`) multiplication takes *O(nlog23)*. FFT algorithm (since year 2019 approach by [David Harvey](https://theconversation.com/weve-found-a-quicker-way-to-multiply-really-big-numbers-114923))...
I've pulled the repo and tried to build without success. Current environment: - MacBook Pro M1 with Monterey 12.4 - OpenJDK 17.0.1+12 - Kotlin 1.7.0 - Gradle 7.4.2 (downgraded from...
There is already a bunch of nice features from KMath contributors. But since the code is usually sophisticated, some community design process needs to be enforced in order to make...
It will be great to be able to write some formulas in KMath docs.
…ctions were added for LongArray
# Feature Request ## Use Case - When doing object detection using deep learning, we have to do what is known as non-max supression. To do so we need to...