pub fn apply_float_f32(
lhs: &[f32],
rhs: &[f32],
op: ArithmeticOperator,
mask: Option<&Bitmask>,
) -> Result<FloatArray<f32>, KernelError>Expand description
Performs element-wise float ArithmeticOperator on &[f32] using SIMD (W32 lanes) for dense/masked cases, Falls back to standard scalar ops when the simd feature is not enabled. Returns FloatArray<f32> and handles optional null-mask.