Comparison implementation. \param x first operand \param y second operand \retval true if operands not equal \retval false else
| 1902 | /// \retval true if operands not equal |
| 1903 | /// \retval false else |
| 1904 | static bool isnotequal(half x, half y) { return (x.data_!=y.data_ && ((x.data_|y.data_)&0x7FFF)) || isnan(x); } |
| 1905 | |
| 1906 | /// Comparison implementation. |
| 1907 | /// \param x first operand |