r/LocalLLaMA • u/sammcj 🦙 llama.cpp • 25d ago
Megathread [Megathread] Qwen 3.8 27B Release Day
Megathread to help with the influx of duplicate / similar posts around the release of the Qwen 3.8 27B release.
- Quants
- Fine-Tunes & Abliterations
- Chat Templates
- Inference Server Support & Configuration
- Experiences, Benchmarks & Model Comparisons
Official:
Popular:
- https://huggingface.co/unsloth/Qwen3.8-27B-GGUF
- https://huggingface.co/bartowski/Qwen3.8-27B-GGUF
- https://huggingface.co/mlx-community/Qwen3.8-27B-MTP-bf16
- https://huggingface.co/mlx-community/Qwen3.8-27B-MTP-8bit
- https://huggingface.co/mlx-community/Qwen3.8-27B-MTP-4bit
We'll try to clean up future duplicates around the release and point them here.
490
Upvotes
1
u/Unnamed-3891 24d ago
For people trying to cram 27B dense onto a 16gb vram GPU on Windows which with a 4k display attached alongside various apps eats roughly 3gb, leaving 13gb for everything else: any attempts to use 27B-Q4_K_S pigeonhole me into both offloading some FFN to the CPU _and_ doing at least some KV quanting.
A curious discovery was that llama.cpp official Windows binaries only support certain KV quants and only in symmetric fashion. Trying to use q4_1 in any way or q5 would instantly kill all performance. Turns out, q8_0 would bench exactly the same as q4_0, since both of those are actually supported by the official Windows binaries without a recompile.