Skip to main content

Lab · LLM VRAM · DeepSeek

Computed

DeepSeek-R1-Distill-Qwen 7B memory requirements

7.6B parameters — 14.2 GiB of weights at FP16, 4.4 GiB at Q4_K_M, and 56.0 KiB of KV cache per token on top. Solved against 22 real accelerators; 22 of them can hold it.

Parameters

7.6B

7,615,616,512 exactly

Weights, Q4_K_M

4.4 GiB

14.2 GiB unquantized

KV cache

56.0 KiB

per token · 28L × 4 KV × 128

Smallest card (Q4)

8 GB

Jetson Orin Nano Super (8GB)

Weights at each precision

PrecisionBits/weightWeightsSourceNotes
FP16 / BF1616.0014.2 GiBmeasured fileUnquantized. Two bytes per parameter, exactly.
Q8_08.517.5 GiBmeasured fileEffectively lossless; the usual reference point for quantized quality.
Q6_K6.575.8 GiBmeasured fileQuality loss is hard to measure on most benchmarks.
Q5_K_M5.725.1 GiBmeasured fileA middle point when Q4 fits with too little room for context.
Q4_K_M4.924.4 GiBmeasured fileThe default choice for local inference — the best size/quality knee.
Q3_K_M4.003.5 GiBmeasured fileMeasurable quality loss. Worth it only to make a model fit at all.

Every accelerator

Largest quant that fits with at least 4k of context, the context it leaves, and the bandwidth ceiling on decode speed. Each row links to the worked page for that pairing.

AcceleratorMemoryBandwidthBest quantMax contextCeiling
Apple M3 Ultra (512GB)512 GB819 GB/sFP16 / BF16131,07252 tok/s
H200 141GB (SXM)141 GB4800 GB/sFP16 / BF16131,072306 tok/s
Apple M4 Max (128GB)128 GB546 GB/sFP16 / BF16131,07235 tok/s
H100 80GB (SXM5)80 GB3350 GB/sFP16 / BF16131,072213 tok/s
A100 80GB (SXM)80 GB2039 GB/sFP16 / BF16131,072130 tok/s
Jetson AGX Orin (64GB)64 GB204.8 GB/sFP16 / BF16131,07213 tok/s
RTX 6000 Ada Generation48 GB960 GB/sFP16 / BF16131,07261 tok/s
L40S48 GB864 GB/sFP16 / BF16131,07255 tok/s
Apple M4 Pro (48GB)48 GB273 GB/sFP16 / BF16131,07217 tok/s
A100 40GB (SXM)40 GB1555 GB/sFP16 / BF16131,07299 tok/s
GeForce RTX 509032 GB1792 GB/sFP16 / BF16131,072114 tok/s
GeForce RTX 409024 GB1008 GB/sFP16 / BF16131,07264 tok/s
Radeon RX 7900 XTX24 GB960 GB/sFP16 / BF16131,07261 tok/s
GeForce RTX 309024 GB936 GB/sFP16 / BF16131,07260 tok/s
Apple M4 (24GB)24 GB120 GB/sFP16 / BF1671,4298 tok/s
GeForce RTX 508016 GB960 GB/sFP16 / BF1610,01361 tok/s
GeForce RTX 5070 Ti16 GB896 GB/sFP16 / BF1610,01357 tok/s
GeForce RTX 4080 SUPER16 GB736 GB/sFP16 / BF1610,01347 tok/s
GeForce RTX 4070 Ti SUPER16 GB672 GB/sFP16 / BF1610,01343 tok/s
GeForce RTX 4060 Ti 16GB16 GB288 GB/sFP16 / BF1610,01318 tok/s
GeForce RTX 3060 12GB12 GB360 GB/sQ8_065,49242 tok/s
Jetson Orin Nano Super (8GB)8 GB102 GB/sQ5_K_M17,39717 tok/s

Questions about this model

How much VRAM does DeepSeek-R1-Distill-Qwen 7B need?

14.2 GiB for the weights at FP16 and 4.4 GiB at Q4_K_M, from an exact count of 7,615,616,512 parameters. On top of that, the KV cache costs 56.0 KiB per token of context — 448 MiB at 8k and 1.8 GiB at 32k.

What is the smallest GPU that runs DeepSeek-R1-Distill-Qwen 7B?

Of the 22 accelerators here, the smallest that holds Q4_K_M weights is the Jetson Orin Nano Super (8GB) at 8 GB — 4.4 GiB of weights against 6.0 GiB usable, leaving room for 30k tokens. For unquantized weights you need at least a GeForce RTX 5080.

Why is the KV cache for DeepSeek-R1-Distill-Qwen 7B the size it is?

Because it stores one key and one value vector per token, per layer: 28 layers × 4 KV heads × 128 dimensions × 2 (K and V) × 2 bytes = 56.0 KiB per token. Grouped-query attention shares those 4 KV heads across 28 query heads, cutting the cache by 7× against multi-head attention. None of this can be read off the parameter count.

Compare with

Method and limits. The parameter count and every architecture figure on this page are read from the model's own published config and the Hub's index over its tensor shapes, fetched 2026-08-07 — nothing here is recalled from a model's name. Weight bytes are the size of a real published file wherever one exists and the parameter count times the published llama.cpp bits-per-weight where it does not; every row says which. Speed figures are roofline bounds — memory bandwidth divided by bytes read per token — not benchmarks. Nothing on this page is written by a language model.