Function sparse_dense_matmul
pub fn sparse_dense_matmul<I, E, LhsE, RhsE>(
acc: impl As2DMut<E>,
lhs: SparseColMatRef<'_, I, LhsE>,
rhs: impl As2D<RhsE>,
alpha: Option<E>,
beta: E,
parallelism: Parallelism<'_>,
)
Expand description
Multiplies a sparse matrix lhs
by a dense matrix rhs
, and stores the result in
acc
. See faer::linalg::matmul::matmul
for more details.
ยงNote
Allows unsorted matrices.