Multiplication implementation. \param x first operand \param y second operand \return Half-precision product stored in single-precision
| 1606 | /// \param y second operand |
| 1607 | /// \return Half-precision product stored in single-precision |
| 1608 | static expr multiplies(float x, float y) |
| 1609 | { |
| 1610 | return expr(x * y); |
| 1611 | } |
| 1612 | |
| 1613 | /// Division implementation. |
| 1614 | /// \param x first operand |