pub fn simd_vec_add<T>(a: &[T], b: &[T]) -> Vec<T>where T: Copy + Add<Output = T>,
Element-wise addition of two vectors.