Division implementation. \param x first operand \param y second operand \return Half-precision quotient stored in single-precision
| 1228 | /// \param y second operand |
| 1229 | /// \return Half-precision quotient stored in single-precision |
| 1230 | static expr divides(float x, float y) { return expr(x/y); } |
| 1231 | |
| 1232 | /// Output implementation. |
| 1233 | /// \param out stream to write to |