pub fn simd_reduce<T, F>(values: &[T], init: T, op: F) -> Twhere T: Copy, F: Fn(T, T) -> T,
Parallel reduction with custom binary operation.