Skip to main content

matvec_rows

Function matvec_rows 

Source
pub fn matvec_rows(pool: Option<&Pool>, w: &[f32], x: &[f32], out: &mut [f32])
Expand description

Row-parallel dense matvec: out[o] = Σ_j w[o·in + j]·x[j]. Bit-identical to the serial loop (row order does not change math).