sparse_sparse_matmul_numeric

Function sparse_sparse_matmul_numeric 

Source
pub fn sparse_sparse_matmul_numeric<I: Index, T: ComplexField, LhsT: Conjugate<Canonical = T>, RhsT: Conjugate<Canonical = T>>(
    dst: SparseColMatMut<'_, I, T>,
    beta: Accum,
    lhs: SparseColMatRef<'_, I, LhsT>,
    rhs: SparseColMatRef<'_, I, RhsT>,
    alpha: T,
    info: &SparseMatMulInfo,
    par: Par,
    stack: &mut MemStack,
)
Expand description

performs a numeric matrix multiplication of a sparse matrix lhs by a sparse matrix rhs multiplied by alpha, and stores or adds the result to dst.

ยงnote

lhs and rhs are allowed to be unsorted matrices.