Comparison implementation. \param x first operand \param y second operand \retval true if operand unordered \retval false else
| 1967 | /// \retval true if operand unordered |
| 1968 | /// \retval false else |
| 1969 | static bool isunordered(half x, half y) { return isnan(x) || isnan(y); } |
| 1970 | |
| 1971 | private: |
| 1972 | static double erf(double arg) |