Skip to main content

simd_maximum_f64

Function simd_maximum_f64 

Source
pub fn simd_maximum_f64(
    a: &ArrayView1<'_, f64>,
    b: &ArrayView1<'_, f64>,
) -> Array1<f64>
Expand description

Compute element-wise maximum of two f64 arrays using unified SIMD operations

This function uses the unified SIMD interface for better performance when processing large arrays of f64 values.

§Arguments

  • a - First array
  • b - Second array

§Returns

  • Element-wise maximum array