Floor implementation. \param arg value to round \return rounded value
| 2077 | /// \param arg value to round |
| 2078 | /// \return rounded value |
| 2079 | static half floor(half arg) |
| 2080 | { |
| 2081 | return half(binary, round_half<std::round_toward_neg_infinity>(arg.data_)); |
| 2082 | } |
| 2083 | |
| 2084 | /// Ceiling implementation. |
| 2085 | /// \param arg value to round |
no test coverage detected