GPUs tracked45Price history8 dayssince Sep 3, 2026Price points (24h)6,955 pointsBiggest 24h dropMac Studio M4 Max 128GB-6.7%Biggest 24h riseGeForce RTX 5070 Ti+21.0%Data updated

How to Deploy DeepSeek V4 Pro Locally

DeepSeek V4 Pro is a MoE model with 1,600B total parameters and 49B active per token. At Q4 it needs 894GB of VRAM to sit entirely on the GPU; with experts offloaded to system RAM it needs only 17GB of VRAM plus 879GB of RAM. No single card in the database fits it; it needs multiple GPUs or the unified memory of a Mac Studio. In offload mode the cheapest card that runs it is the GeForce RTX 2080 Ti 22GB, at roughly 3 tokens/s.

DeepSeek V4 Pro details

Launch dateAug 13, 2026
Revision0813
LicenseMIT
ArchitectureMoE
Ollama tag
Min VRAM at Q4894 GB · Q4_K_M · 8K
Experts offloaded17 GB VRAM + 879 GB RAM
Parameters1,600B
MoE49B
Layers61
Hidden size7,168
KV heads1
Head dim512
Max context1M
VendorDeepSeek

How much VRAM does DeepSeek V4 Pro need for local deployment?

MoE: all 1,600B parameters must stay resident in memory, while speed is set by the 49B active per token.

QuantizationWeightsGBTotal at 8KGBTotal at 32KGBTotal at 128KGB
1-bit375.5est.377.5380.3391.8
2-bit594.6est.596.5599.4610.8
3-bit766.7est.768.6771.5782.9
4-bit849.7GGUF893.8896.6908.1
5-bit1,079.6est.1,081.51,084.41,095.8
8-bit873.4GGUF1,660.51,663.31,674.7
FP163,129.2est.3,131.23,134.13,145.5

Total = weights + KV cache (FP16) + 1GB runtime overhead. Weights marked GGUF are measured file sizes from the repository; the rest are estimated from bytes per parameter. Contexts beyond this model's 1M limit show a dash. Each tier takes whichever file of that bit width the repository has, preferring unsloth dynamic quants, so the exact file name varies by model.

Which GPUs can run DeepSeek V4 Pro?

Xianyu

No single card in the database fits DeepSeek V4 Pro: it needs at least 894GB of VRAM at Q4_K_M with an 8K context.

A multi-GPU build needs at least 894GB of VRAM in total.

None of the unified-memory machines in the database fit it either.

Recommended GPUs for DeepSeek V4 Pro with CPU/GPU offloading

Xianyu

Expert weights live in system RAM (needs at least 879 GB); VRAM holds only attention layers, shared experts and the KV cache, at least 17 GB at Q4. Speed is bound by RAM bandwidth (estimated at 70 GB/s) and is far slower than a full-VRAM setup.

DeviceVRAMGBPriceRAM neededGBEst. t/s
GeForce RTX 2080 Ti 22GB22$3878793.1
Instinct MI50 32GB32$4058793.1
Tesla V100 32GB32$4768793.2
Radeon RX 7900 XT20$6398793.1
Arc Pro B6024$7848792.8
Radeon RX 7900 XTX24$8628793.1
GeForce RTX 309024$1,2048793.2
Arc Pro B7032$1,4658792.9
Radeon AI PRO R970032$1,6438793
CMP 170HX 40GB40$1,6808793.3
Radeon PRO W780032$1,8448792.9
CMP 170HX 64GB64$2,0898793.3
RTX PRO 4000 Blackwell24$2,3278793.1
Instinct MI21064$2,7518793.2
Radeon PRO W790048$3,2718793.1
GeForce RTX 409024$3,4948793.2
GeForce RTX 5090 D V224$3,5548793.3
RTX PRO 4500 Blackwell32$3,8448793.2
GeForce RTX 4090 48GB48$3,9558793.2
A100 40GB PCIe40$4,6028793.3
Mac Studio M4 Max 128GB128$4,7888793
DGX Spark 128GB128$4,8328792.7
GeForce RTX 5090 D32$4,8928793.3
MacBook Pro M4 Max 128GB128$5,2648793
Mac Studio M5 Max 128GB128$5,8818793
GeForce RTX 509032$6,5138793.3
RTX PRO 5000 Blackwell 48GB48$6,9598793.3
MacBook Pro M5 Max 128GB128$8,1488793
RTX PRO 5000 Blackwell 72GB72$9,6658793.3
RTX PRO 6000D84$10,1118793.3
RTX PRO 6000 Blackwell96$18,4228793.3
Mac Studio M3 Ultra 512GB512$19,3158793.1
Arc Pro B65328792.9
GeForce RTX 4080 SUPER 32GB328793.1
Instinct MI100328793.2
Ryzen AI Max+ 395 128GB1288792.5

Deploy DeepSeek V4 Pro locally with Ollama, llama.cpp or vLLM

Ollama

The Ollama library has no official tag for it yet.

llama.cpp

llama.cpp pulls the GGUF straight from Hugging Face; -c sets the context length.

llama-server -hf unsloth/DeepSeek-V4-Pro-0813-GGUF:Q4_K_M -c 8192
vLLM

vLLM serves the original-precision weights, which needs far more memory than GGUF and usually more than one GPU.

vllm serve deepseek-ai/DeepSeek-V4-Pro-0813

File names follow that week's model-library snapshot; the definitions are in the methodology. Methodology

FAQ

How much VRAM does DeepSeek V4 Pro need?

At Q4_K_M with an 8K context DeepSeek V4 Pro needs about 894GB of VRAM; 1,076GB leaves comfortable headroom.

What is the cheapest GPU that runs DeepSeek V4 Pro?

No single card in the database fits DeepSeek V4 Pro; it needs multiple GPUs or a Mac Studio's unified memory.

Can you run DeepSeek V4 Pro with Ollama?

Not yet: the Ollama library has no official tag for it. You can load the GGUF with llama.cpp instead.