DeepSeek-V4-Pro shipped with the two most seductive numbers in open-weights history: 1.6 trillion parameters and 1M-token context, under an MIT license. The internet's takeaway — "a frontier model you can run at home" — is wrong by roughly three orders of magnitude. This guide is the arithmetic that separates the two claims: total parameters set your memory bill, active parameters set your speed, and the 1M context sets your KV-cache bill. None of these is a GPU purchase; the smallest sensible unit is an 8-GPU node, and the honest unit is a rack.
Every figure below is either quoted from DeepSeek's own primary sources (release note, model card, tech report, config.json) or computed in the open, with assumptions labeled. Hardware reference figures (H200 = 141 GB @ 4.8 TB/s, H100 = 80 GB @ 3.35 TB/s, B200 = 180 GB @ 8.0 TB/s, MI355X = 288 GB @ 8.0 TB/s) are the site-audited constants from the VRAM deep dive.
The official config, pinned
From the model card and release note — not from anyone's benchmark 1 2:
| Property | DeepSeek-V4-Pro | Source |
|---|---|---|
| Total parameters | 1.6T | model card / release note |
| Activated parameters | 49B | model card / release note |
| Context length | 1,048,576 (1M) | model card, max_position_embeddings |
| Architecture | MoE (DeepSeekMoE, retained from V3) | tech report |
| Attention | Hybrid: Compressed Sparse Attention (CSA) + Heavily Compressed Attention (HCA), successor to V3's MLA | tech report 3 |
| Released precision | FP8 base; instruct = routed experts FP4, everything else FP8 | model card |
| Layers / KV heads / head dim | 61 / latent-compressed / 512 | config.json |
| License | MIT | model card |
The instruct checkpoint you actually download is the FP4+FP8 mixed one: its 64 safetensors shards total 865 GB as published on Hugging Face 4 — before a single byte of KV cache, activation buffers, or CUDA graphs.
The MoE asymmetry: weights are total, compute is active
Mixture-of-Experts means each token is routed through a small subset of the network. DeepSeek's config: 384 routed experts, 6 selected per token, 1 shared expert. So per token, only roughly 49B of the 1.6T parameters are touched. This creates the asymmetry that makes V4-Pro look deceptively cheap:
Weights VRAM scales with total parameters (1.6T) — every expert must sit in memory even if most are idle, because routing is data-dependent and unpredictable. Serving FLOPs and per-token weight reads scale with active parameters (49B) — the same byte level as a mid-size dense model. This is the entire "1.6T sounds like 49B" pitch: the marketing number (49B active, ~30 GB of bytes moved per token) and the memory number (1.6T, ~0.9–3.2 TB resident) are both true, simultaneously, and only one of them fits in your budget. It is the same quantization-vs-bits-per-weight math as for dense models — the twist is which parameter count each resource follows.
The asymmetry is real, not a trick: it is why DeepSeek can serve this at API prices we will pin below. But it transfers compute cost to you and keeps memory cost in full. Your 8-GPU node sits at ~77–88% of its memory just holding weights to win back a per-token speed of a small model.
Weight bands: what fits on what
Weight bytes at each precision (using , per the formula above), plus the ~15% serving overhead (activation buffers, communication scratch, CUDA-graph allocations — the same overhead band our inference calculator uses) before any KV cache:
| Precision | Raw weights | +15% serving | Fits on |
|---|---|---|---|
| fp16 / bf16 (2 B/param) | 3,200 GB | 3,680 GB | nothing single-node; GB200 NVL72-class (12,960 GB) fits with room |
| fp8 (1 B/param) | 1,600 GB | 1,840 GB | no 8-GPU node except 8×MI355X (2,304 GB); NVL72 comfortably |
| 4-bit / FP4 (0.5 B/param) | 800 GB | 920 GB | 8×H200 (1,128 GB) or 8×B200 (1,440 GB), barely; 8×MI355X with headroom |
| Released FP4+FP8 checkpoint (actual, 865 GB) | 865 GB | 994 GB | 8×H200 node with ~12% headroom; no single GPU of any class fits 865 GB |
Read that right-hand column carefully: not one shipping GPU holds even the FP4 weights — the 288 GB MI355X holds less than a third of the released checkpoint. The node math only closes because 8-GPU platforms pool memory via tensor/expert parallelism, and every one of those inter-GPU hops costs bandwidth — on H200 NVLink (~900 GB/s bidirectional per GPU) experts cross GPUs constantly, which is why MoE serving is far more parallelism-sensitive than dense models.
And for a 1M-context model, fp16 was never in the running: the released model is FP4+FP8 natively, quantizing it back up to fp16 buys quality margin nobody has measured yet and triples a bill you already cannot pay. The realistic bands are the last two rows: the published checkpoint on an 8×H200-class node (~994 GB total, KV budget ~50–130 GB) or fp8 on 8×MI355X / larger clusters.
The KV chain: where 1M context explodes
Weights are the fixed cost; KV cache is the per-user cost, and it scales linearly with context. The general formula is the same one derived in our KV-cache guide:
V4-Pro does not publish bare per-token KV bytes the way a GQA model does — its CSA/HCA hybrid compresses the cache along the sequence dimension with per-layer ratios (128×, 4×, plus 0 on some layers, all present in config.json 5). What DeepSeek does publish, as their own headline efficiency claim: at 1M context, V4-Pro needs only 10% of the KV cache of DeepSeek-V3.2, while using only 27% of the single-token FLOPs 3. V3.2 uses V3's MLA scheme at 68.6 KiB/token in bf16 (the same figure our KV guide derived from V3's config 6). So the honest, labeled estimate:
— an estimate derived from their published ratio applied to a known V3 config, not a figure they print directly. Now the table for one user:
| Context | Uncompressed MLA (V3.2-equivalent) | Effective (10% claim) |
|---|---|---|
| 4,096 | 0.29 GB | 0.03 GB |
| 32,768 | 2.30 GB | 0.23 GB |
| 131,072 (128k) | 9.21 GB | 0.92 GB |
| 1,048,576 (1M) | 73.69 GB | 7.37 GB |
Two readings, and you need both:
- The compression is genuinely remarkable. A 1M-token conversation for 7.4 GB would have been ~74 GB on V3.2 and would be measured in terabytes on an uncompressed GQA model at this scale. The architecture is doing real work.
- 1M context is still a full H200 of memory per couple of users. On the only realistic node (8×H200, ~130 GB free after the FP4 checkpoint + overhead), a fully-utilized 1M-context user costs 7.4 GB — but 32 concurrent 128k users cost GB, and the Think-Max mode DeepSeek itself recommends at ≥384K context 2 triples that per user. Your concurrency ceiling on the flagship config is dozens, not hundreds, unless you buy more nodes.
The prefill bill matters too: processing 1M input tokens means ~1M × (49B active × 2 FLOP/param) ≈ FLOPs of compute — around a minute of pure compute on a single 8×H200 node at fp8 dense utilization, but the memory spikes (KV allocation for a full 1M-token batch) are what make huge single-prompt prefill impractical on shared self-hosted hardware.
Throughput ceiling: bandwidth ÷ bytes-moved
Decode is memory-bound (the KV guide's arithmetic model): each generated token requires reading the active weights from HBM. With B:
| Serving config | Bytes moved/token (active) | Ceiling (batch 1, fp8) | Ceiling (released FP4+FP8, ~26.5 GB est.) |
|---|---|---|---|
| 8×H200 @ 4.8 TB/s = 38.4 TB/s | 49 GB | 784 tok/s | ~1,450 tok/s |
| 8×B200 @ 8.0 TB/s = 64 TB/s | 49 GB | 1,306 tok/s | ~2,416 tok/s |
| 8×MI355X @ 8.0 TB/s = 64 TB/s | 49 GB | 1,306 tok/s | ~2,416 tok/s |
Aggregate ceiling includes KV-read overhead: at full 1M context (7.37 GB KV re-read per token, effective) it drops to ~681 tok/s on 8×H200 fp8.
Caveats, stated: these are ceilings, not benchmarks — they ignore attention FLOPs, routing/communication overhead (large for 384 experts spread over 8 GPUs), kernel launch and dequantization cost. Real deployments typically land at 30–60% of ceiling; expert-parallel communication across nodes can halve it again. And per-user latency is what users feel: batching N users on one weights-read amortizes bandwidth but divides per-user speed by N. The FP4 column's 26.5 GB is our estimate (49/1600 of the 865 GB checkpoint). The important fact survives all caveats: the node behaves, per token, like a 30–50 GB model that takes 900+ GB to store.
The API you are competing against
DeepSeek's own prices for deepseek-v4-pro, retrieved 2026-09-24 7 (peak; off-peak is half): $1.32 per 1M cache-miss input tokens, $3.96 per 1M output tokens ($0.044/M cache-hit). For a typical 3:1 input-output mix, that is a blended:
Now the brutal comparison. Renting an 8×H200 node for ~$22/hour (a labeled assumption; cloud pricing fluctuates) and sustaining a generous 300 tok/s aggregate decode:
That is ~10× the peak API price — and 300 tok/s sustained is optimistic already. Even pegged at the theoretical 784 tok/s ceiling, the node produces at best $7.80/M per output token — while the $1.98/M API figure blends input and output 3:1, so the honest comparison is per-use-case, not figure-vs-figure. The break-even against $1.98/M:
— and the node's maximum possible decode output at ceiling is 784 tok/s × 86,400 s ≈ 67M tokens/day. Units matter here: the 267M break-even counts blended billed tokens (input + output), while 67M counts output tokens. Under the same 3:1 input:output mix the article's API price blends, 67M output tokens bill as roughly 4×67M ≈ 270M blended tokens/day — sitting essentially AT break-even, not 4× below it. At the theoretical ceiling the node is within a few percent of cost parity. (Same method as the economics mode of our inference calculator: hourly cost ÷ sustained tokens per hour; adjust the $22/hour and utilization assumptions there for your own cloud quotes.)
The honest verdict, mechanically: unless your marginal rate is well below $22/hour per node and your sustained demand exceeds tens of millions of tokens per day at high concurrency, the API wins on pure cost — by an order of magnitude. Self-hosting V4-Pro is a cluster purchase justified by data sovereignty, air-gapped deployment, or uncapped capacity, priced at roughly $20/M instead of $2/M. For individuals and most companies the rational version of "I want to run DeepSeek myself" is V4-Flash (284B total / 13B active — FP4 weights around 160 GB, an actual 2–4 GPU job) or quantized V3.2.
What "open weights" does and does not buy you
The critical view, primary-source edition:
- Weights are open; the recipe is not fully reproducible. MIT-licensed weights, yes. But the 32T+ token pretraining corpus is unpublished, the full post-training pipeline (domain experts, GRPO reward models, on-policy distillation teachers) is described in the tech report 3 only at the level you can read above. "Open" here means usable and modifiable, not reproducible — you cannot retrain or even fully audit what you are deploying.
- DeepSeek never claimed "beats every frontier model." Their own model card comparison tables 2 show V4-Pro-Max losing to Opus-4.6 Max and Gemini-3.1-Pro on most knowledge and agentic benchmarks (e.g. MMLU-Pro 87.5 vs Gemini's 91.0; Terminal Bench 67.9 vs GPT-5.4's 75.1), and winning on some coding and math ones. Claims of "beats frontier" circulating in third-party posts are community leaderboards and vibes — the release note itself says "performance rivaling the world's top closed-source models" and, notably, "please rely only on our official accounts for DeepSeek news" 1. DeepSeek's own honesty here is unusually good; borrow it.
- "Preview" means drift is coming. Both the model card and the release note label this a preview release; the API pricing page already shows a newer V4.1-Flash replacing the Flash lineage. Pin versions, and expect V4-Pro weight updates and an API deprecation clock of your own planning.
- The efficiency claims are DeepSeek's, not yet independently verified at the byte level. The 10%-of-V3.2 KV and 27%-of-FLOPs figures come from their tech report's own Figure 1 estimates. Our KV table above inherits that uncertainty and says so.
The takeaway is not that V4-Pro is overhyped — on the primary sources, it is an extraordinary piece of engineering. The takeaway is that open weights transfers you a memory bill and an ops problem, not a frontier model you can park next to your desk. The 49B is what you pay per token; the 1.6T is what you buy upfront; and 1M context is the line item that decides your fleet size. Run your own numbers in the inference calculator before quoting anyone's cluster.
Footnotes
-
DeepSeek, DeepSeek V4 Preview Release, api-docs.deepseek.com/news/news260424 (accessed 2026-09-24). ↩ ↩2
-
DeepSeek-AI, DeepSeek-V4-Pro model card, huggingface.co/deepseek-ai/DeepSeek-V4-Pro (accessed 2026-09-24). ↩ ↩2 ↩3
-
DeepSeek-AI, DeepSeek-V4: Towards Highly Efficient Million-Token Context Intelligence, arXiv:2606.19348 (2026). ↩ ↩2 ↩3
-
Sum of the 64 safetensors shards via the Hugging Face Hub API: 865 GB total; +15% serving overhead = 994 GB. ↩
-
config.jsonof deepseek-ai/DeepSeek-V4-Pro on Hugging Face: 61 layers, 384 routed experts, 6 active per token, FP4expert_dtype,max_position_embeddings1,048,576, per-layercompress_ratios(128, 4, 0). ↩ -
DeepSeek-V2 (MLA rank-512 latent + 64-dim RoPE key = 70,272 B/token bf16 at 61 layers), arXiv:2405.04434; V3 config as derived in our KV-cache guide. ↩
-
DeepSeek, Models & Pricing, api-docs.deepseek.com/quick_start/pricing (retrieved 2026-09-24; prices subject to change). ↩