pub fn simd_binary_op<F, S1, S2, D>(
a: &ArrayBase<S1, D>,
b: &ArrayBase<S2, D>,
op: fn(F, F) -> F,
) -> Array<F, D>Expand description
Apply element-wise operation on arrays using unified SIMD operations
Generic helper for binary operations with SIMD support.