Modulo implementation. \param x first operand \param y second operand \return Half-precision division remainder stored in single-precision
| 1647 | /// \param y second operand |
| 1648 | /// \return Half-precision division remainder stored in single-precision |
| 1649 | static expr fmod(float x, float y) |
| 1650 | { |
| 1651 | return expr(std::fmod(x, y)); |
| 1652 | } |
| 1653 | |
| 1654 | /// Remainder implementation. |
| 1655 | /// \param x first operand |