Views
No views yet
Q2_K (2-bit) quantization of z-lab/Qwen3.8-27B-DFlash2 (~700 MB on disk).Qwen3.8-27B dense models without spilling into system RAM.Q4_K_M (~1.1 GB) to Q2_K (~700 MB), we save ~400–450 MB of VRAM with zero degradation in speculative draft accuracy.Qwen3.8-27B-UD-Q4_K_XL using llama-server (PR #27342) with --spec-draft-n-max 3 across a 28k prompt baseline.| Drafter Quant | File Size | Mean Accepted Length | Acceptance Rate | Decode Speed | Max Usable Context (24GB VRAM) |
|---|---|---|---|---|---|
| Official Q4_K_M | ~1.10 GB | 2.80 / 3.0 tokens | 60.00% | 75.89 t/s | 150,000 tokens (Q4 KV) |
| Custom Q2_K (This Repo) | ~700 MB | 2.81 / 3.0 tokens | 60.22% | 75.93 t/s | 170,000 tokens (+20k) |
Q4_0 KV (~76 t/s @ 23.89 GB)Q8_0 KV (~75 t/s @ 23.88 GB)[6, 20, 34, 48, 62] of the base model. Because it is not a standalone causal LM, standalone llama-imatrix calibration fails (dflash requires ctx_other to be set).IQ1_S, IQ2_XXS) cannot be computed, making Q2_K the absolute lowest non-degrading quantization floor for DFlash 2.llama.cppllama.cpp built from PR #27342.llama.cpp:1git clone https://github.com/ggml-org/llama.cpp.git
2cd llama.cpp
3git fetch origin pull/27342/head:pr-27342
4git switch pr-27342
5
6# Build with CUDA
7cmake -B build -DGGML_CUDA=ON && cmake --build build -j