pub fn simd_norm_squared<T>(values: &[T]) -> Twhere T: Copy + Add<Output = T> + Mul<Output = T> + Zero,
Compute squared L2 norm of a vector using SIMD.