Largest representative value * * @return Returns the largest finite value representable by bfloat16 */
| 162 | * @return Returns the largest finite value representable by bfloat16 |
| 163 | */ |
| 164 | static bfloat16 max() |
| 165 | { |
| 166 | bfloat16 val; |
| 167 | val.value = 0x7F7F; |
| 168 | return val; |
| 169 | } |
| 170 | |
| 171 | bfloat16 &operator+=(float v) |
| 172 | { |