Confirm quantization availability for Qwen3.8-27B #2
Notifications
Due Date
No due date set.
Blocks
Reference: haylan/LLM-Server#2
Reference in New Issue
Block a user
Part of #1
Question
Does an Unsloth-style dynamic 4-bit GGUF quant ("UD-Q4_K_XL" or equivalent) of Qwen/Qwen3.8-27B exist (check Hugging Face, Unsloth's org, ModelScope)? If not, what is the closest available quantization that preserves tool-call/structured-output fidelity (favor dynamic/XL quants or AWQ over plain Q4_K_M), and what's its approximate VRAM footprint for weights + KV cache budget on a 32GB card at 32K-128K context? Report the exact repo/filename to use.
Resolved: yes, a dynamic 4-bit XL quant exists.
Repo:
unsloth/Qwen3.8-27B-GGUFFile:
Qwen3.8-27B-UD-Q4_K_XL.gguf(17.6 GB) — confirmed directly from the HF repo's file tree.VRAM budget on a 32GB RDNA4 card (R9700/gfx1201) via llama.cpp ROCm/HIP:
Both fit comfortably. The model is a hybrid dense/linear-attention architecture (only 16 of 64 layers are standard full-attention/KV-caching layers, per
full_attention_interval: 4), which keeps KV cache growth much smaller than a plain-attention 27B model would need.Full writeup with citations (HF pages, Unsloth docs, QwenLM GitHub, llama.cpp ROCm/gfx1201 notes) and confidence/uncertainty notes:
docs/research/qwen3.8-27b-quant.md, committed on branchresearch/qwen3.8-27b-quant(local-only — not pushed to the remote).