Function dense_sparse_matmul

Source
pub fn dense_sparse_matmul<I: Index, E: ComplexField, LhsE: Conjugate<Canonical = E>, RhsE: Conjugate<Canonical = E>>(
    acc: MatMut<'_, E>,
    lhs: MatRef<'_, LhsE>,
    rhs: SparseColMatRef<'_, I, RhsE>,
    alpha: Option<E>,
    beta: E,
    parallelism: Parallelism,
)
Expand description

Multiplies a dense matrix lhs by a sparse matrix rhs, and stores the result in acc. See crate::mul::matmul for more details.

ยงNote

Allows unsorted matrices.