Comparison implementation. \param x first operand \param y second operand \retval true if operand unordered \retval false else
| 1954 | /// \retval true if operand unordered |
| 1955 | /// \retval false else |
| 1956 | static bool isunordered(half x, half y) { return isnan(x) || isnan(y); } |
| 1957 | |
| 1958 | private: |
| 1959 | static double erf(double arg) |