Views
No views yet
linear_attn blocks, embeddings, output) use a conventional GGUF quant — three variants are provided.Why NVFP4? On NVIDIA Blackwell GPUs (RTX 50-series, B100/B200), llama.cpp uses native NVFP4 tensor-core MMA kernels (added in llama.cpp #22196) for the FFN matmul — the dominant compute cost during inference. On older GPUs the path falls back todp4a/MMQ kernels, where these GGUFs run but offer no perf advantage over standard K-quants.
| File | Size | FFN | Other tensors | When to pick |
|---|---|---|---|---|
Qwen3.6-27B-NVFP4-Q4_K_M.gguf | 15 GB | NVFP4 | Q4_K_M | Recommended. Fastest serving throughput on Blackwell + smallest VRAM footprint |
Qwen3.6-27B-NVFP4-Q8_0.gguf | 19 GB | NVFP4 | Q8_0 | Higher precision attention/embeddings if you have the VRAM |
Qwen3.6-27B-NVFP4-BF16.gguf | 28 GB | NVFP4 | BF16 | Max quality (preserves source precision for non-FFN tensors); slower in practice — only pick if you need bit-for-bit source fidelity |
mmproj-Qwen3.6-27B-F16.gguf | 889 MB | — | F16 vision tower | Required for image/video input — reusable with any Qwen3.6-27B GGUF, not NVFP4-specific |
llama-batched-bench, 512 in / 128 out per request)
NVFP4-Q4_K_M beats stock Q4_K_M on total serving throughput at every parallel batch size we tested (+9 / +0 / +8 / +2% at 1 / 4 / 8 / 16 sequences), with the largest token-generation wins at single stream (+12%) and 8 parallel sequences (+14%). It also uses less VRAM (14.7 vs 16.3 GiB), leaving more room for KV cache.| Variant | Size | PP512 (tok/s) | TG64 (tok/s) |
|---|---|---|---|
NVFP4-Q4_K_M | 14.72 GiB | 2865 | 64 |
NVFP4-Q8_0 | 18.65 GiB | 3346 | 64 |
NVFP4-BF16 | 27.19 GiB | 1403 | 49 |
llama-cli -m Qwen3.6-27B-NVFP4-Q8_0.gguf -ngl 999 -c 8192 -p "Your prompt here"1llama-server \
2 -m Qwen3.6-27B-NVFP4-Q8_0.gguf \
3 --mmproj mmproj-Qwen3.6-27B-F16.gguf \
4 -ngl 999 -c 32768 \
5 --host 0.0.0.0 --port 8080/v1/chat/completions with image content blocks — see the llama.cpp multimodal docs.<think> blocks. For non-thinking usage pass --reasoning off (in llama-cli) or set chat_template_kwargs.enable_thinking=false in the API.linear_attn blocks. The NVFP4 source from mmangkad keeps the SSM in_proj_* projections and standard attention projections at higher precision — only the FFN matmul (192 tensors) is NVFP4. The variants above differ only in how those non-FFN tensors are stored.Qwen/Qwen3.6-27Bconvert_hf_to_gguf.py and llama-quantize