fmaf 函数

计算 _X (* _Y) + _Z,舍入为三元操作

inline float fmaf(
   float _X,
   float _Y,
   float _Z
) restrict(amp);

参数

  • _X
    浮点值

  • _Y
    浮点值

  • _Z
    浮点值

返回值

返回 _X (* _Y) + _Z,舍入为三元操作

要求

标题: amp_math.h

命名空间: 并发:: precise_math

请参见

参考

Concurrency::precise_math 命名空间