p3_matrix::mul

Function mul_csr_dense

Source
pub fn mul_csr_dense<F, B>(a: &CsrMatrix<F>, b: &B) -> RowMajorMatrix<F>
where F: Field, B: Matrix<F> + Sync,
Expand description

Compute C = A * B, where A in a CSR matrix and B is a dense matrix.

§Panics

Panics if dimensions of input matrices don’t match.