@0xkeenz: Today I verified something I've been pondering for a long time. The official Qwen3.6 27B model has BF16 weights, but some quantized versions, like cyankiwi / Unsloth, convert some key weights to FP16 instead of keeping BF16. BF16 and FP16 have the same storage footprint, so why not just keep the original BF16 weights...?
Summary
The author verified that converting the Qwen3.6 27B model weights from BF16 to FP16 does not cause numerical overflow, and pointed out that FP16 has higher mantissa precision, explaining why quantized versions use FP16 instead of keeping BF16.
View Cached Full Text
Cached at: 07/09/26, 09:40 AM
Today I verified something I’ve been纠结 about for a long time.
Qwen3.6 27B’s official original model uses BF16 weights. However, some quantized versions, like cyankiwi / Unsloth, convert some critical weights to FP16 instead of keeping them in BF16. BF16 and FP16 have the same storage footprint, so why not just keep the original BF16 weights…?
I’ve been puzzled. I saw occasional mentions of this issue on Hugging Face and Reddit. One explanation says FP16 is more friendly to some inference backends and older devices, but I couldn’t find discussions comparing the numerical ranges of the two formats. So I decided to look into it myself.
Comparison of BF16 and FP16
- BF16: 8-bit exponent + 7-bit mantissa, range approximately ±3.4×10³⁸
- FP16: 5-bit exponent + 10-bit mantissa, range approximately ±65504
From a precision perspective, FP16’s mantissa has about 8 times higher precision than BF16.
From a numerical range perspective, BF16’s maximum finite value is about 2¹¹² times larger than FP16’s — its numerical range is vastly larger than FP16’s.
So I started wondering: could some original BF16 weights fall outside the ±65504 range? If so, converting BF16 to FP16 would cause numerical overflow and irreversible information loss.
Instead of just worrying, I decided to verify. I downloaded the original Qwen3.6 27B model, ran a script examining all weights, and found that all weights were well within the FP16 numerical range. The maximum absolute value was about 25.5… far from the FP16 upper limit of 65504. So my earlier concern about BF16→FP16 conversion causing numerical overflow was completely unnecessary!
Since the actual weights never hit the FP16 range ceiling, FP16 — with its higher mantissa precision — is actually more suitable for storing critical weights. That might be one reason why quantized versions like cyankiwi / Unsloth convert some key weights to FP16.
Haha, another day I outsmarted myself into being foolish.
Similar Articles
@sudoingX: this lab took qwen 3.6 27b, the model i've been calling king of the 24gb tier all month, and crushed it down to 3.9gb. …
PrismML announces Bonsai 27B, a binary-quantized version of Qwen3.6 27B that runs on a phone using only 1.125 bits per weight, claiming 89.5% intelligence retention. The model is being independently tested by @sudoingX to verify performance.
@0xkeenz: Interesting, I was just studying the differences between Unsloth and NVIDIA's Qwen3.6 27B NVFP4 yesterday, and today Unsloth updated! The new Unsloth's quantization approach is very similar to NVIDIA's official solution: instead of choosing between BF16 and ...
Unsloth releases a new version of Qwen3.6 27B NVFP4 quantization scheme, introducing FP8_E4M3 intermediate precision layer and refined weight protection, achieving 2.5x speed improvement on 24GB VRAM, while improving accuracy and tool-calling capabilities.
Qwen 3.6 27B - VLLM Performance Benchmark Results (BF16, FP8, NVFP4)
A detailed benchmark of Qwen 3.6 27B using VLLM across BF16, FP8, and NVFP4 quantizations, showing NVFP4 fastest for token generation but FP8 best for prompt processing, with practical advice on choosing the right quantization for coding tasks.
Qwen/Qwen3.6-35B-A3B-FP8
Alibaba releases Qwen3.6-35B-A3B-FP8, an open-weight quantized variant of Qwen3.6 with 35B parameters and 3B activated via MoE, featuring improved agentic coding capabilities and thinking preservation for iterative development.
Qwen 3.6 27B 30GB Same top p: 98.358 ± 0.033 % vs UD Q8 K XL 33GB Same top p: 97.426 ± 0.041 %
A community researcher shares a custom quantization recipe for Qwen3.6-27B that produces a smaller 30GB Q8 GGUF by keeping high-outlier sublayers in BF16, achieving better KLD and top-p metrics than Unsloth's 33GB Q8_K_XL variant.