multik icon indicating copy to clipboard operation
multik copied to clipboard

Multidimensional array library for Kotlin

Results 69 multik issues
Sort by recently updated
recently updated
newest added

enhancement
multiplatform

I'd like to hava a `power` function just like numpy. Behavoirs: case 1: > array [1, 2, 3, 4, 5] power number 2 returns [1, 4, 9, 16, 25] case...

enhancement
jvm
native
api

Use [friend-paths](https://github.com/JetBrains/kotlin/blob/167ddc556dea55603876c1ef91c3319e4dd36284/compiler/testData/cli/jvm/extraHelp.out#L38) for improvement in our codebase security and encapsulation management

api

org.jetbrains.kotlinx:multik-openblas Module has only macOS variants https://repo1.maven.org/maven2/org/jetbrains/kotlinx/multik-openblas/0.2.2/multik-openblas-0.2.2.module

bug
build
native

The following code will compile, but cause the runtime error because inferred type is Number which is unsupported. `val b = mk.ndarray(mk[1.0, 2])`. Considering current library design, is it possible...

api

In order to update all values (by some dimension) in the NDArray there's no bulk copy operator that's efficient and as a result you need to iterate all dimensions: ```...

enhancement
api

Some computations are not possible (although they should be) because default `singularityErrorLevel` is too high. Why isn't this parameter public, how to make this threshold lower? For example, Apache Common...

native
api

I'd like to have a `sqrt`, `cbrt` , `ceil`, `floor`, `abs` function and so on unary operator for NDArray. `ceil` function Behaviors: > array [1.2, 2.3] ceil return a new...

enhancement
perf
jvm