Comparison implementation. \param x first operand \param y second operand \retval true if operands not equal \retval false else
| 1889 | /// \retval true if operands not equal |
| 1890 | /// \retval false else |
| 1891 | static bool isnotequal(half x, half y) { return (x.data_!=y.data_ && ((x.data_|y.data_)&0x7FFF)) || isnan(x); } |
| 1892 | |
| 1893 | /// Comparison implementation. |
| 1894 | /// \param x first operand |