matrex
matrex copied to clipboard
A blazing fast matrix library for Elixir/Erlang with C implementation using CBLAS.
I am using Matrex in the context of [AoC](https://adventofcode.com) for the second year now, and it is not the first time I am confronted with the need to get the...
@michalmuskala can you have a look at new structure of the `Matrex.Array` object in this branch: https://github.com/versilov/matrex/blob/array/lib/matrex/array.ex I've added types, arbitrary dimensions and strides. These are now stored in Elixir...
Brilliant library. Of course Numpy has a 2 decades of accumulated functionality on top, so there's still a lot of stuff python-side that I'd want to use. How can Matrix...
Right now the library uses "regular" NIFs. In general, for playing nice with the soft-realtime guarantees of the VM regular NIFs should execute in under 1ms. When they execute longer,...
on arch with openblas, compilation fails with the following error: ``` a5% mix compile ==> matrex Compiling: native/src/matrix_dot.c native/src/matrix_dot.c:5:10: fatal error: cblas.h: No such file or directory 5 | #include...