pub fn spmv_segmented(a: &CsrMatrix, x: &[f64]) -> Vec<f64>Expand description
Segmented SpMV: processes each row independently to prepare for
GPU-style parallel execution. Functionally identical to CsrMatrix::spmv
but structured for row-parallel dispatch.