Closed japaric closed 9 years ago
There is no BLAS routine for an eager mat *= scalar. f32x4/f64x2 can be used to provide explicit SIMD acceleration, though it will only work on continuous chunks of memory (Mat/Row<&[T]>/Col<&[T]>).
mat *= scalar
f32x4
f64x2
Mat
Row<&[T]>
Col<&[T]>
There is no BLAS routine for an eager mat *= scalar
Was wrong, there is a scal routine. This has been implemented in #51
scal
There is no BLAS routine for an eager
mat *= scalar
.f32x4
/f64x2
can be used to provide explicit SIMD acceleration, though it will only work on continuous chunks of memory (Mat
/Row<&[T]>
/Col<&[T]>
).