Nearest integer implementation. \param arg value to round \return rounded value
| 1653 | /// \param arg value to round |
| 1654 | /// \return rounded value |
| 1655 | static half round(half arg) { return half(binary, round_half_up(arg.data_)); } |
| 1656 | |
| 1657 | /// Nearest integer implementation. |
| 1658 | /// \param arg value to round |
nothing calls this directly
no test coverage detected