Addition implementation. \param x first operand \param y second operand \return Half-precision sum stored in single-precision
| 1588 | /// \param y second operand |
| 1589 | /// \return Half-precision sum stored in single-precision |
| 1590 | static expr plus(float x, float y) |
| 1591 | { |
| 1592 | return expr(x + y); |
| 1593 | } |
| 1594 | |
| 1595 | /// Subtraction implementation. |
| 1596 | /// \param x first operand |