Kimi-K3
moonshotai/Kimi-K3Kimi-K3 at IQ1_S is exactly 566,967,159,264 bytes (528.03 GiB / 566.97 GB) — an effective 1.632 bits per weight, not the nominal 1. Its KV cache at 32K is 3.27 GiB.
Shipped quantizations
KV cache by context
| Context | KV cache (f16)● | Flat formula | Overstated by | Full / windowed / recurrent |
|---|---|---|---|---|
| 4,096 | 0.41 GiB | 21.80 GiB | 53.33× | 93 / 0 / 0 |
| 8,192 | 0.82 GiB | 43.59 GiB | 53.33× | 93 / 0 / 0 |
| 16,384 | 1.63 GiB | 87.19 GiB | 53.33× | 93 / 0 / 0 |
| 32,768 | 3.27 GiB | 174.38 GiB | 53.33× | 93 / 0 / 0 |
| 65,536 | 6.54 GiB | 348.75 GiB | 53.33× | 93 / 0 / 0 |
| 131,072 | 13.08 GiB | 697.50 GiB | 53.33× | 93 / 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 IQ1_S at roughly 1456.32 GiB. The real file is 528.03 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 Kimi-K3 need?
- IQ1_S is exactly 566,967,159,264 bytes (528.03 GiB) in weights. Add the KV cache, which depends on your context length, plus roughly half a gigabyte of runtime overhead.
- How large is Kimi-K3's KV cache?
- 3.27 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 Kimi-K3 a mixture-of-experts model?
- Yes — 896 experts, null 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 Kimi-K3 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.