Comparison implementation. \param x first operand \param y second operand \retval true if operands equal \retval false else
| 1882 | /// \retval true if operands equal |
| 1883 | /// \retval false else |
| 1884 | static bool isequal(half x, half y) { return (x.data_==y.data_ || !((x.data_|y.data_)&0x7FFF)) && !isnan(x); } |
| 1885 | |
| 1886 | /// Comparison implementation. |
| 1887 | /// \param x first operand |