Division implementation. \param x first operand \param y second operand \return Half-precision quotient stored in single-precision
| 1615 | /// \param y second operand |
| 1616 | /// \return Half-precision quotient stored in single-precision |
| 1617 | static expr divides(float x, float y) |
| 1618 | { |
| 1619 | return expr(x / y); |
| 1620 | } |
| 1621 | |
| 1622 | /// Output implementation. |
| 1623 | /// \param out stream to write to |