-
Notifications
You must be signed in to change notification settings - Fork 360
Closed
Description
For matrix gemm routine, however, it doesn't
let a = Array2::<f64>::zeros((10000, 1000));
let b = Array2::<f64>::zeros((10000, 1000));
let _ = a.t().dot(&b);However, if gemm
let b = Array2::<f64>::zeros((10000, 1000));
let at = Array2::<f64>::zeros((1000, 10000));
let _ = at.dot(&b);See code example here
https://github.com/fardream/rust-ndarray-t-dot
Related to #445