//! Fused AXPY operation (KAIZEN-026)
//!
//! Single-pass y = a*x + y with zero temporary allocations.
/// AXPY operation: y = a*x + y
///
/// Single-pass fused loop, auto-vectorized by the compiler.
///
/// # Arguments
/// * `a` - Scalar coefficient
/// * `x` - Input vector (typically gradient or momentum)
/// * `y` - Output vector (updated in-place)