pub fn dot_f32(a: &[f32], b: &[f32]) -> f32Expand description
SIMD-friendly f32 dot product with chunked lane accumulators.
Numerically a hair different from a naïve left-fold (float add is non-associative) but far within similarity tolerance, and materially faster on the 384-dim vectors used for semantic recall.