The llama.cpp project released build b10760, which includes specific fixes for the Qwen3-tts-0.6B model to prevent numerical instability during inference.

  • The mtmd loader now treats the qwen3-tts code predictor proj_in as optional, aligning with the reference implementation where this tensor is omitted.
  • The code predictor ffn_down layer is kept in F32 precision because its activations peak around 1.5e5, exceeding the F16 ceiling and causing NaN errors.

These changes ensure that the graph correctly handles missing weights and prevents overflow in high-activation layers for this specific checkpoint.