Funzione fma
Calcola (_X * _Y) + _Z, arrotondato come un'operazione ternaria
inline float fma(
float _X,
float _Y,
float _Z
) restrict(amp);
inline double fma(
double _X,
double _Y,
double _Z
) restrict(amp);
Parametri
_X
Valore a virgola mobile_Y
Valore a virgola mobile_Z
Valore a virgola mobile
Valore restituito
Restituisce (_X * _Y) + _Z arrotondato come un'operazione ternaria
Requisiti
Intestazione: amp_math.h
Spazio dei nomi: Concurrency::precise_math