Function simd_maximum_f32
Source pub fn simd_maximum_f32(
a: &ArrayView1<'_, f32>,
b: &ArrayView1<'_, f32>,
) -> Array1<f32>
Expand description
Compute element-wise maximum of two f32 arrays using unified SIMD operations
This function uses the unified SIMD interface for better performance when
processing large arrays of f32 values.
§Arguments
a - First array
b - Second array
§Returns
- Element-wise maximum array