9il on v3.2.2
9il on master
update gitignore (compare)
mir-glas
aims to provide .. static c libraries
mir-glas
claims to provide blas and glas. For some reason lubeck still wants cblas though.
m[] = m1 + m2
(it wasn't possible last time I used it)
universal()
function do? It doesn't take the slice as a ref-argument so I am wondering if it modifies the original slice in any way or if it just returns a new slice that has a different "view" on the same data? Or would it be a mistake to use the original slice after I called universal()
on it?
universal()
? the docu isn't very clear here
gemm
from mir-glas. It requires the SliceKind.universal but all I have is contiguous, so my solution so far was to just do gemm(1.0f, m1.universal, m2.universal, 0.0f, tmp_result.universal);