GPUs tracked45Price history8 dayssince Sep 3, 2026Price points (24h)6,955 pointsBiggest 24h dropGeForce RTX 5070 Ti-6.3%Biggest 24h riseRTX PRO 4000 Blackwell+7.7%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?

eBay

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

eBay

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$5518793.1
Radeon RX 7900 XT20$7008793.1
Tesla V100 32GB32$7208793.2
Instinct MI50 32GB32$7688793.1
Radeon RX 7900 XTX24$9998793.1
Instinct MI10032$9998793.2
GeForce RTX 309024$1,5508793.2
RTX PRO 4000 Blackwell24$2,9508793.1
GeForce RTX 409024$3,1998793.2
Radeon PRO W790048$3,4958793.1
RTX PRO 4500 Blackwell32$4,3008793.2
A100 40GB PCIe40$4,8998793.3
Instinct MI21064$5,0468793.2
MacBook Pro M4 Max 128GB128$5,5498793
GeForce RTX 509032$6,5008793.3
Mac Studio M4 Max 128GB128$6,5478793
MacBook Pro M5 Max 128GB128$7,2508793
RTX PRO 6000 Blackwell96$16,9858793.3
Mac Studio M3 Ultra 512GB512$22,0008793.1
Arc Pro B60248792.8
GeForce RTX 5090 D V2248793.3
Arc Pro B65328792.9
Arc Pro B70328792.9
GeForce RTX 4080 SUPER 32GB328793.1
GeForce RTX 5090 D328793.3
Radeon AI PRO R9700328793
Radeon PRO W7800328792.9
CMP 170HX 40GB408793.3
GeForce RTX 4090 48GB488793.2
RTX PRO 5000 Blackwell 48GB488793.3
CMP 170HX 64GB648793.3
RTX PRO 5000 Blackwell 72GB728793.3
RTX PRO 6000D848793.3
DGX Spark 128GB1288792.7
Mac Studio M5 Max 128GB1288793
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.