f16 f16_add(f16 a, f16 b) { return s16_to_f16( f16_to_s16(a) + f16_to_s16(b) ); }
f16 f16_neg(f16 f) { return s16_to_f16( -f16_to_s16(f) ); }