| 151 | return from_float(a.to_float() * b.to_float()); |
| 152 | } |
| 153 | [[nodiscard]] static float16_t div(float16_t a, float16_t b) noexcept { |
| 154 | return from_float(a.to_float() / b.to_float()); |
| 155 | } |
| 156 | |
| 157 | // Negate: flip sign bit directly (exact, no rounding). |
| 158 | [[nodiscard]] static float16_t neg(float16_t a) noexcept { |