GPUs tracked45Price history8 dayssince Sep 3, 2026Price points (24h)6,955 pointsBiggest 24h dropBiggest 24h riseData 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 Tesla V100 32GB, 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?

AmazonJP

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

AmazonJP

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
Tesla V100 32GB32$1,1418793.2
Arc Pro B6024$1,1648792.8
Radeon RX 7900 XT20$1,2448793.1
Radeon RX 7900 XTX24$1,7388793.1
Arc Pro B7032$2,0748792.9
Radeon AI PRO R970032$2,2448793
GeForce RTX 309024$2,5208793.2
Ryzen AI Max+ 395 128GB128$3,9138792.5
RTX PRO 4000 Blackwell24$3,9568793.1
GeForce RTX 409024$4,9058793.2
GeForce RTX 509032$7,4898793.3
DGX Spark 128GB128$8,2238792.7
GeForce RTX 2080 Ti 22GB228793.1
GeForce RTX 5090 D V2248793.3
Arc Pro B65328792.9
GeForce RTX 4080 SUPER 32GB328793.1
GeForce RTX 5090 D328793.3
Instinct MI100328793.2
Instinct MI50 32GB328793.1
Radeon PRO W7800328792.9
RTX PRO 4500 Blackwell328793.2
A100 40GB PCIe408793.3
CMP 170HX 40GB408793.3
GeForce RTX 4090 48GB488793.2
Radeon PRO W7900488793.1
RTX PRO 5000 Blackwell 48GB488793.3
CMP 170HX 64GB648793.3
Instinct MI210648793.2
RTX PRO 5000 Blackwell 72GB728793.3
RTX PRO 6000D848793.3
RTX PRO 6000 Blackwell968793.3
Mac Studio M4 Max 128GB1288793
Mac Studio M5 Max 128GB1288793
MacBook Pro M4 Max 128GB1288793
MacBook Pro M5 Max 128GB1288793
Mac Studio M3 Ultra 512GB5128793.1

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.