deepseek-ai · text · mixture of experts

DeepSeek-V3.2

deepseek-ai/DeepSeek-V3.2

DeepSeek-V3.2 at Q4_K_M is exactly 404,494,155,648 bytes (376.71 GiB / 404.49 GB) — an effective 4.721 bits per weight, not the nominal 4. Its KV cache at 32K is 2.14 GiB.

From the file· summed from 29 file(s)From the file· KV per layer
Parameters
685B
total, not active
Architecture
deepseek2
61 layers
Context
163,840
native (config.json)
License
mit

Shipped quantizations

exact bytes, summed from published files
QuantSizeExact bytesEffective bpwTensorsPublisher
IQ1_M10 shards138.82 GiB149,058,758,4321.740DevQuasar
UD-TQ1_0150.20 GiB161,280,830,5281.883unsloth
IQ2_XXS11 shards162.59 GiB174,584,075,6802.038DevQuasar
UD-IQ1_S4 shards171.48 GiB184,123,010,5602.149unsloth
UD-IQ1_M5 shards185.62 GiB199,310,536,3202.326unsloth
UD-IQ2_XXS5 shards202.22 GiB217,127,382,6882.534unsloth
UD-IQ2_M5 shards212.44 GiB228,110,708,3522.663unsloth
Q2_K16 shards227.38 GiB244,148,278,6242.850DevQuasar
Q2_K5 shards228.51 GiB245,363,998,3362.864unsloth
Q2_K_L5 shards228.72 GiB245,581,188,7362.866unsloth
UD-IQ3_XXS6 shards254.37 GiB273,130,614,5603.188unsloth
Q3_K_S6 shards270.50 GiB290,448,369,3443.390unsloth
Q3_K_M22 shards297.34 GiB319,266,360,8323.727DevQuasar
Q3_K_M7 shards298.24 GiB320,231,581,5683.738unsloth
IQ4_XS8 shards333.74 GiB358,347,337,6324.183unsloth
IQ4_NL8 shards353.10 GiB379,135,963,1044.425unsloth
Q4_08 shards353.99 GiB380,088,791,0084.436unsloth
Q4_K_S8 shards354.89 GiB381,056,757,7284.448unsloth
Q4_K_M29 shards376.71 GiB404,494,155,6484.721DevQuasar
Q4_K_M9 shards377.56 GiB405,398,024,3204.732unsloth
Q4_19 shards391.87 GiB420,771,131,5204.911unsloth
Q5_K_S10 shards430.86 GiB462,632,464,5765.400unsloth
Q5_K_M33 shards442.78 GiB475,428,544,8005.549DevQuasar
Q5_K_M10 shards443.46 GiB476,161,405,1525.558unsloth
Q6_K35 shards513.09 GiB550,922,260,4486.430DevQuasar
Q6_K12 shards513.45 GiB551,313,406,5286.435unsloth
Q8_059 shards664.30 GiB713,286,521,6968.325DevQuasar
Q8_015 shards664.30 GiB713,286,531,6168.325unsloth
BF1630 shards1250.09 GiB1,342,273,065,37615.667unsloth

KV cache by context

computed per layer
ContextKV cache (f16)Flat formulaOverstated byFull / windowed / recurrent
4,0960.27 GiB19.06 GiB71.11×61 / 0 / 0
8,1920.54 GiB38.13 GiB71.11×61 / 0 / 0
16,3841.07 GiB76.25 GiB71.11×61 / 0 / 0
32,7682.14 GiB152.50 GiB71.11×61 / 0 / 0
65,5364.29 GiB305.00 GiB71.11×61 / 0 / 0
131,0728.58 GiB610.00 GiB71.11×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 Q4_K_M at roughly 359.06 GiB. The real file is 376.71 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
128
KV heads
128
Head dim
192
Hidden size
7168
Vocab
129,280
Sliding window
none
SWA period
MLA
yes
Experts
256
Experts per token
8
use_sliding_window

Questions people ask

How much VRAM does DeepSeek-V3.2 need?
Q4_K_M is exactly 404,494,155,648 bytes (376.71 GiB) in weights. Add the KV cache, which depends on your context length, plus roughly half a gigabyte of runtime overhead.
How large is DeepSeek-V3.2'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 DeepSeek-V3.2 a mixture-of-experts model?
Yes — 256 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 DeepSeek-V3.2 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.