moonshotai · text · mixture of experts

Kimi-K3

moonshotai/Kimi-K3

Kimi-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.

From the file· summed from 94 file(s)From the file· KV per layer
Parameters
2780B
total, not active
Architecture
kimi-k3
93 layers
Context
1,048,576
native (config.json)
License
other

Shipped quantizations

exact bytes, summed from published files
QuantSizeExact bytesEffective bpwTensorsPublisher
IQ1_S94 shards528.03 GiB566,967,159,2641.632GrEarl
Q2_K94 shards864.81 GiB928,581,175,8402.672GrEarl

KV cache by context

computed per layer
ContextKV cache (f16)Flat formulaOverstated byFull / windowed / recurrent
4,0960.41 GiB21.80 GiB53.33×93 / 0 / 0
8,1920.82 GiB43.59 GiB53.33×93 / 0 / 0
16,3841.63 GiB87.19 GiB53.33×93 / 0 / 0
32,7683.27 GiB174.38 GiB53.33×93 / 0 / 0
65,5366.54 GiB348.75 GiB53.33×93 / 0 / 0
131,07213.08 GiB697.50 GiB53.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

same modality, comparable size

Will it run on your card?

full quant x context sweep

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

from config.json
Layers
93
Attention heads
96
KV heads
96
Head dim
192
Hidden size
7168
Vocab
163,840
Sliding window
none
SWA period
MLA
yes
Experts
896
Experts per token
use_sliding_window

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.