Views
No views yet
qwen35moe.imatrix, included) using ik_llama.cpp's IK_K quant types, which give noticeably better quality-per-bit than standard K-quants on this MoE.⚠️ These require ik_llama.cpp. TheIQ*_Ktypes are an ik_llama extension and will NOT load in mainline llama.cpp, LM Studio, Ollama, or koboldcpp. If you need a portable quant, use a standardQ4_K_M/Q5_K_MGGUF instead.
| File | Quant | Size |
|---|---|---|
qwen35moe-IQ4_K.gguf | IQ4_K | 19.7 GB |
qwen35moe-IQ5_K.gguf | IQ5_K | 24.0 GB |
qwen35moe-IQ6_K.gguf | IQ6_K | 28.8 GB |
qwen35moe.imatrix | imatrix used for quantization | 0.11 GB |
1./build/bin/llama-server \
2 -m qwen35moe-IQ4_K.gguf \
3 -ngl 99 -fa 1 -c 32768 \
4 -ctk q8_0 -ctv q8_0 \
5 -fmoe -rtr \
6 --jinja --host 127.0.0.1 --port 8080-fa 1 — flash attention (not --flash-attn on).-fmoe — ik_llama's fused-MoE kernel; meaningfully faster MoE decode. Recommended for this model.-rtr — run-time tensor repack for your GPU; can speed up decode on some setups (optional).-mtp — speculative decoding regresses on MoE (measured ~−28% on this model). These quants also ship no MTP head. Leave it off.-ub 512 (default) is fastest here; -ub 2048 is ~8% slower on this MoE.