|
__device__ float fmaf |
( |
float |
x, |
|
|
float |
y, |
|
|
float |
z | |
|
) |
| | |
Compute the value of as a single ternary operation. After computing the value to infinite precision, the value is rounded once.
- Returns:
- Returns the rounded value of
as a single operation.
- fmaf(
, , z ) returns NaN. - fmaf(
, , z ) returns NaN. - fmaf(
x , y , ) returns NaN if is an exact . - fmaf(
x , y , ) returns NaN if is an exact .
- Note:
- For accuracy information for this function see the CUDA C Programming Guide, Appendix C, Table C-1.
|