Function m4ri_sys::_mzd_mul_naive[][src]

pub unsafe extern "C" fn _mzd_mul_naive(
    dest: *mut Mzd,
    a: *const Mzd,
    b: *const Mzd,
    clear: c_int
) -> *mut Mzd

brief Naive cubic matrix multiplication with the pre-transposed B.

That is, compute C such that C == AB^t.

param C Preallocated product matrix. param A Input matrix A. param B Pre-transposed input matrix B. param clear Whether to clear C before accumulating AB