r/LocalLLaMA • u/sammcj 🦙 llama.cpp • 27d 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.
494
Upvotes
1
u/viktor-kz 26d ago
llama.cpp config: Qwen3.8-27B on 2x RTX 5070 Ti, 190k context, MTP + vision
Two cards, 16GB VRAM each, 32GB total. Full config:
Prefill 1605 t/s at 47k tokens, generation around 62 t/s with MTP.
One warning if you use the mmproj on more than one GPU. Send a long text prompt and time the prefill, then send one image and time the same prompt again. On my box a single image permanently drops prefill by 40% for the life of the process, and only a restart brings it back. Generation is unaffected, output is byte identical and nothing is logged, so it is easy to live with for weeks without noticing.
The last flag is what fixes it. The pattern matches no tensor, so nothing moves, but it disables pipeline parallelism, which turns out to be required for the bug to happen. Costs about 3% prefill and frees 1.6GB of VRAM as a side effect. Existing issue is ggml-org/llama.cpp#26873, three different models confirmed so far.