9SMTM6

Results 29 comments of 9SMTM6

I'm getting a similar error, but not anymore when using chrominum. Server: raspberry pi 4, Manjaro-ARM, code-server AUR package (yeah i know manjaro and AUR). Client: Fedora 35, normal amd64...

I think youre looking for the [Wasm-Bindgen Reference](https://rustwasm.github.io/docs/wasm-bindgen/introduction.html). Btw, I think your approach is problematic. Either you want to declare the JS-Function with a [JS-Snippet/Inline-JS](https://rustwasm.github.io/docs/wasm-bindgen/reference/js-snippets.html) or you want to give...

@piotrwitek Could I get at least some sort of feedback on this? Is what I'm describing here just a little too much to answer lightly, or is it outside the...

The link is broken af far as I can tell, btw. I dont know if there is a persistent link and whether it would be a good idea to use...

This isnt about the dotMM metod specifically. Its more that at least I would just want a way to do matrix multiplikations, and until I can find out what its...

with this code: ```kt val whatever = mk.ndarray(floatArrayOf(1f, 2f, 3f)) dot mk.ndarray(floatArrayOf(1f, 2f, 3f)) ``` and these dependencies that may be relevant: ```groovy implementation "org.jetbrains.kotlinx:multik-core:$multik_version" // TODO replace with default...

oops, sorry, the ACTUAL versions: ``` core_ktx_version = "1.8.0" multik_version = "0.2.0" ``` GS10e uses a regular old arm64 SOC.

It looks exactly the same if I use the `default` impl. As the comment in the dependency somewhat cryptically noted, in that case it crashes even if I use `dotVV`...

And, to complete the picture, this works: ```kt import org.jetbrains.kotlinx.multik.kotlin.linalg.KELinAlgEx [...] val whatever = KELinAlgEx.dotVV(mk.ndarray(floatArrayOf(1f, 2f, 3f)), mk.ndarray(floatArrayOf(1f, 2f, 3f))) ```

Not as far as I'm aware. It is based on the generated Android Kotlin template from Android Studio. Unless they do something weird under the hood it should just be...