pub fn simd_sum<T>(values: &[T]) -> Twhere T: Copy + Add<Output = T> + Zero,
Compute sum of array elements using SIMD when possible.