pub fn simd_axpy(a: f32, x: &[f32], y: &mut [f32])Expand description
AXPY operation: y = a*x + y
Single-pass fused loop, auto-vectorized by the compiler.
ยงArguments
a- Scalar coefficientx- Input vector (typically gradient or momentum)y- Output vector (updated in-place)