pub fn naive_matmul<T: ComplexFloat + Zero>( a: &DSlice<T, 2>, b: &DSlice<T, 2>, ) -> DTensor<T, 2>
Textbook implementation of matrix multiplication, in order for this crate to be independant of any backend.