(other Float16)
| 302 | } |
| 303 | |
| 304 | func (f Float16) Mul(other Float16) Float16 { |
| 305 | return Float16FromFloat32(f.Float32() * other.Float32()) |
| 306 | } |
| 307 | |
| 308 | func (f Float16) Div(other Float16) Float16 { |
| 309 | return Float16FromFloat32(f.Float32() / other.Float32()) |