Subtraction implementation. \param x first operand \param y second operand \return Half-precision difference stored in single-precision
| 1597 | /// \param y second operand |
| 1598 | /// \return Half-precision difference stored in single-precision |
| 1599 | static expr minus(float x, float y) |
| 1600 | { |
| 1601 | return expr(x - y); |
| 1602 | } |
| 1603 | |
| 1604 | /// Multiplication implementation. |
| 1605 | /// \param x first operand |