Compute the positive difference between x
and y
. The positive difference is x
- y
when x
> y
and +0 otherwise.
- Returns:
- Returns the positive difference between
x
and y
.
- fdimf(
x
, y
) returns x
- y
if x
> y
. - fdimf(
x
, y
) returns +0 if x
y
.
- Note:
- For accuracy information for this function see the CUDA C Programming Guide, Appendix C, Table C-1.