pub fn csc_mulacc_dense_colmaj<'a, N, A, B, I, Iptr>(
    lhs: CsMatViewI<'_, A, I, Iptr>,
    rhs: ArrayView<'_, B, Ix2>,
    out: ArrayViewMut<'a, N, Ix2>
)where
    N: 'a + MulAcc<A, B>,
    I: 'a + SpIndex,
    Iptr: 'a + SpIndex,
Expand description

CSC-dense colmaj multiplication

Performs better if rhs has few columns.