| 176 | |
| 177 | template<std::float_round_style R = std::round_to_nearest> |
| 178 | AF_CONSTEXPR native_half_t float2half_impl(float value) { |
| 179 | return static_cast<native_half_t>(value); |
| 180 | } |
| 181 | |
| 182 | template<std::float_round_style R = std::round_to_nearest> |
| 183 | AF_CONSTEXPR native_half_t float2half_impl(double value) { |
nothing calls this directly
no test coverage detected