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

Object Safety§

This trait is not object safe.

Implementors§