GLM-4.7-Flash-REAP-23B-A3B
cerebras/GLM-4.7-Flash-REAP-23B-A3BGLM-4.7-Flash-REAP-23B-A3B at Q4_K_M is exactly 14,113,838,816 bytes (13.14 GiB / 14.11 GB) — an effective 4.910 bits per weight, not the nominal 4. Its KV cache at 32K is 1.65 GiB.
Shipped quantizations
| Quant | Size● | Exact bytes● | Effective bpw● | Tensors● | Publisher |
|---|---|---|---|---|---|
| UD-TQ1_0 | 6.09 GiB | 6,536,330,976 | 2.274 | — | unsloth |
| UD-IQ1_S | 6.71 GiB | 7,205,191,392 | 2.507 | — | unsloth |
| UD-IQ1_M | 7.07 GiB | 7,589,308,128 | 2.640 | — | unsloth |
| UD-IQ2_XXS | 7.67 GiB | 8,238,016,224 | 2.866 | — | unsloth |
| UD-IQ2_M | 7.97 GiB | 8,557,487,840 | 2.977 | — | unsloth |
| Q2_K | 8.17 GiB | 8,767,940,320 | 3.050 | — | unsloth |
| Q2_K_L | 8.24 GiB | 8,842,282,720 | 3.076 | — | unsloth |
| UD-IQ3_XXS | 9.35 GiB | 10,036,709,088 | 3.492 | — | unsloth |
| Q3_K_S | 9.59 GiB | 10,298,076,896 | 3.583 | — | unsloth |
| Q3_K_M | 10.50 GiB | 11,273,383,648 | 3.922 | — | unsloth |
| IQ4_XS | 11.71 GiB | 12,575,389,408 | 4.375 | — | unsloth |
| IQ4_NL | 12.34 GiB | 13,252,007,712 | 4.610 | — | unsloth |
| Q4_0 | 12.38 GiB | 13,288,609,504 | 4.623 | — | unsloth |
| Q4_K_S | 12.41 GiB | 13,328,455,392 | 4.637 | — | unsloth |
| Q4_K_M | 13.14 GiB | 14,113,838,816 | 4.910 | — | unsloth |
| Q4_1 | 13.62 GiB | 14,625,068,768 | 5.088 | — | unsloth |
| Q5_K_S | 14.94 GiB | 16,036,566,752 | 5.579 | — | unsloth |
| Q5_K_M | 15.35 GiB | 16,480,540,384 | 5.733 | — | unsloth |
| Q6_K | 17.69 GiB | 18,989,367,008 | 6.606 | — | unsloth |
| Q8_0 | 22.78 GiB | 24,456,890,080 | 8.508 | — | unsloth |
| BF16 | 42.85 GiB | 46,011,270,624 | 16.007 | — | unsloth |
KV cache by context
| Context | KV cache (f16)● | Flat formula | Overstated by | Full / windowed / recurrent |
|---|---|---|---|---|
| 4,096 | 0.21 GiB | 3.67 GiB | 17.78× | 47 / 0 / 0 |
| 8,192 | 0.41 GiB | 7.34 GiB | 17.78× | 47 / 0 / 0 |
| 16,384 | 0.83 GiB | 14.69 GiB | 17.78× | 47 / 0 / 0 |
| 32,768 | 1.65 GiB | 29.38 GiB | 17.78× | 47 / 0 / 0 |
| 65,536 | 3.30 GiB | 58.75 GiB | 17.78× | 47 / 0 / 0 |
| 131,072 | 6.61 GiB | 117.50 GiB | 17.78× | 47 / 0 / 0 |
This model uses multi-head latent attention. No V cache is allocated at all, and the K cache stores a 512-wide latent plus 64 rope dimensions — so reading num_key_value_heads from config.json and multiplying, as every calculator does, overstates the cache by well over an order of magnitude.
Compare with
Will it run on your card?
Why other calculators give a different number
A parameters × bits ÷ 8 estimate puts Q4_K_M at roughly 12.05 GiB. The real file is 13.14 GiB, because a quantization is a mixture and some tensors are always kept at higher precision. The larger discrepancy is the cache: this model allocates no value cache at all, so any formula reading num_key_value_heads overstates it by more than an order of magnitude.
Architecture
Questions people ask
- How much VRAM does GLM-4.7-Flash-REAP-23B-A3B need?
- Q4_K_M is exactly 14,113,838,816 bytes (13.14 GiB) in weights. Add the KV cache, which depends on your context length, plus roughly half a gigabyte of runtime overhead.
- How large is GLM-4.7-Flash-REAP-23B-A3B's KV cache?
- 1.65 GiB at 32K context with an f16 cache, computed per layer. Quantizing the cache to q8_0 roughly halves it, which is often the difference between a context length fitting and not.
- Is GLM-4.7-Flash-REAP-23B-A3B a mixture-of-experts model?
- Yes — 48 experts, 4 routed per token. Every expert must be resident, but only the routed ones are read per token, which is why its memory requirement and its speed behave very differently.
- Which quantization of GLM-4.7-Flash-REAP-23B-A3B should I use?
- Q4_K_M is the usual default. Pick the largest quantization that fits your card at the context you actually need — the table above gives exact sizes for every one published.