naive_matmul

Function naive_matmul 

Source
pub fn naive_matmul<T: ComplexFloat + Zero>(
    a: &DSlice<T, 2>,
    b: &DSlice<T, 2>,
) -> DTensor<T, 2>
Expand description

Textbook implementation of matrix multiplication, in order for this crate to be independant of any backend.