pub fn dot_product_simd(a: &[f32], b: &[f32]) -> f32
Compute the dot product of two float slices using SIMD.
Panics if a.len() != b.len().
a.len() != b.len()