pub unsafe fn simd_fma<T>(_x: T, _y: T, _z: T) -> T
🔬This is a nightly-only experimental API. (
core_intrinsics
)Expand description
Computes (x*y) + z
for each element, but without any intermediate rounding.
T
must be a vector of floats.