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