moonshotai · vision language · mixture of experts

Kimi-K2.6

moonshotai/Kimi-K2.6

Kimi-K2.6 at IQ1_S is exactly 207,404,948,128 bytes (193.16 GiB / 207.40 GB) — an effective 1.567 bits per weight, not the nominal 1. Its KV cache at 32K is 2.14 GiB.

From the file· summed from 6 file(s)From the file· KV per layer
Parameters
1059B
total, not active
Architecture
deepseek2
61 layers
Context
262,144
native (config.json)
License
other

Shipped quantizations

exact bytes, summed from published files
QuantSizeExact bytesEffective bpwTensorsPublisher
IQ1_S6 shards193.16 GiB207,404,948,1281.567bartowski
IQ1_M6 shards216.46 GiB232,425,773,7601.756bartowski
IQ2_XXS7 shards252.81 GiB271,455,378,2402.051bartowski
IQ2_XS8 shards282.35 GiB303,172,311,9682.291bartowski
IQ2_S8 shards287.58 GiB308,788,763,5202.334bartowski
IQ2_M9 shards318.27 GiB341,738,822,7522.583bartowski
Q2_K10 shards333.59 GiB358,189,980,8642.707bartowski
Q2_K_L10 shards334.66 GiB359,336,860,8642.716bartowski
IQ3_XXS11 shards397.34 GiB426,635,369,7923.224bartowski
Q3_K_S12 shards413.86 GiB444,379,618,6883.358bartowski
IQ3_XS13 shards434.41 GiB466,446,098,0163.525bartowski
Q3_K_M13 shards434.81 GiB466,874,179,1683.528bartowski
Q3_K_L13 shards454.05 GiB487,537,745,5043.684bartowski
IQ3_M13 shards454.53 GiB488,050,679,3923.688bartowski
Q4_016 shards543.62 GiB583,710,875,2004.411bartowski
BF1646 shards1912.15 GiB2,053,155,814,88015.516unsloth

KV cache by context

computed per layer
ContextKV cache (f16)Flat formulaOverstated byFull / windowed / recurrent
4,0960.27 GiB9.53 GiB35.56×61 / 0 / 0
8,1920.54 GiB19.06 GiB35.56×61 / 0 / 0
16,3841.07 GiB38.13 GiB35.56×61 / 0 / 0
32,7682.14 GiB76.25 GiB35.56×61 / 0 / 0
65,5364.29 GiB152.50 GiB35.56×61 / 0 / 0
131,0728.58 GiB305.00 GiB35.56×61 / 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 554.56 GiB. The real file is 193.16 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
61
Attention heads
64
KV heads
64
Head dim
192
Hidden size
7168
Vocab
163,840
Sliding window
none
SWA period
MLA
yes
Experts
384
Experts per token
8
use_sliding_window

Questions people ask

How much VRAM does Kimi-K2.6 need?
IQ1_S is exactly 207,404,948,128 bytes (193.16 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-K2.6's KV cache?
2.14 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-K2.6 a mixture-of-experts model?
Yes — 384 experts, 8 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-K2.6 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.