Trait FloatSimd

Source
pub trait FloatSimd<F: Float, const N: usize>: SIMD<F, N> {
    // Required method
    fn multiply_add(&mut self, a: Self, b: Self);
}

Required Methods§

Source

fn multiply_add(&mut self, a: Self, b: Self)

fused multiply-add

c = a * b + c

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§