Skip to main content

spmv_bcoo

Function spmv_bcoo 

Source
pub fn spmv_bcoo<T: SimdOps, const BM: usize, const BN: usize>(
    data: ValidatedData<BlockedCooData<'_, T, BM, BN>>,
    x: &[T],
    y: &mut [T],
)
Expand description

Computes sparse SpMV using const-generic Blocked-COO tiles.

ยงPanics

Panics if x.len() < ncols or y.len() < nrows. Structural Blocked-COO validation is performed by ValidatedData::new before this function can be called.