| 1156 | /// \param arg value to round |
| 1157 | /// \return rounded value |
| 1158 | MEGDNN_HOST MEGDNN_DEVICE static bfloat16 round(bfloat16 arg) { |
| 1159 | return bfloat16(binary_t(), round_bfloat16_up(arg.data_)); |
| 1160 | } |
| 1161 | |
| 1162 | /// Nearest integer implementation. |
| 1163 | /// \param arg value to round |
nothing calls this directly
no test coverage detected