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

How to Deploy DeepSeek V4 Flash Locally

DeepSeek V4 Flash is a MoE model with 284B total parameters and 13B active per token. At Q4 it needs 160GB of VRAM to sit entirely on the GPU; with experts offloaded to system RAM it needs only 7GB of VRAM plus 155GB of RAM. The cheapest card that runs it today is the Mac Studio M3 Ultra 512GB at about $19,315, at roughly 47.2 tokens/s. In offload mode the cheapest card that runs it is the Tesla V100 16GB, at roughly 12 tokens/s.

DeepSeek V4 Flash details

Launch dateJul 31, 2026
Revision0731
LicenseMIT
ArchitectureMoE
Ollama tag
Min VRAM at Q4160 GB · Q4_K_M · 8K
Experts offloaded7 GB VRAM + 155 GB RAM
Parameters284B
MoE13B
Layers43
Hidden size4,096
KV heads1
Head dim512
Max context1M
VendorDeepSeek

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

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

QuantizationWeightsGBTotal at 8KGBTotal at 32KGBTotal at 128KGB
1-bit86.9GGUF68.370.378.4
2-bit96.8GGUF107.2109.2117.3
3-bit128.2GGUF137.8139.8147.8
4-bit155.1GGUF160162170.1
5-bit191.6est.193.3195.3203.4
8-bit161.9GGUF296.1298.1306.1
FP16555.4est.557.1559.1567.2

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 Flash?

Xianyu
DeviceVRAMGBPriceEst. t/sSuggested context
Mac Studio M3 Ultra 512GB512$19,3156 listings47.2128K

Fits when weights + KV cache + runtime overhead is at or below usable memory, single card. "Offload" on MoE models means it runs with expert weights in system RAM (only attention layers and KV cache stay in VRAM); that speed assumes 70 GB/s RAM bandwidth. The context column is the largest tier that fits.

Recommended GPUs for DeepSeek V4 Flash with CPU/GPU offloading

Xianyu

Expert weights live in system RAM (needs at least 155 GB); VRAM holds only attention layers, shared experts and the KV cache, at least 7 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 16GB16$13115511.6
GeForce RTX 2080 Ti 22GB22$38715511.2
Instinct MI50 32GB32$40515511.4
Radeon RX 6950 XT16$44615510.7
Radeon RX 7800 XT16$46115510.8
Tesla V100 32GB32$47615511.6
Radeon RX 7900 XT20$63915511.1
GeForce RTX 5060 Ti 16GB16$69715510.8
Arc Pro B6024$78415510.1
Radeon RX 7900 XTX24$86215511.4
Radeon RX 9070 XT16$90715510.8
GeForce RTX 507012$91815511.3
GeForce RTX 408016$1,15215511.4
GeForce RTX 309024$1,20415511.7
Arc Pro B7032$1,46515510.6
GeForce RTX 5070 Ti16$1,47215511.6
Radeon AI PRO R970032$1,64315510.8
CMP 170HX 40GB40$1,68015512
Radeon PRO W780032$1,84415510.7
GeForce RTX 508016$1,85115511.7
CMP 170HX 64GB64$2,08915512
RTX PRO 4000 Blackwell24$2,32715511.3
Instinct MI21064$2,75115511.8
Radeon PRO W790048$3,27115511.2
GeForce RTX 409024$3,49415511.7
GeForce RTX 5090 D V224$3,55415511.9
RTX PRO 4500 Blackwell32$3,84415511.6
GeForce RTX 4090 48GB48$3,95515511.7
A100 40GB PCIe40$4,60215512
Mac Studio M4 Max 128GB128$4,78815510.7
DGX Spark 128GB128$4,8321559.9
GeForce RTX 5090 D32$4,89215512.1
MacBook Pro M4 Max 128GB128$5,26415510.7
Mac Studio M5 Max 128GB128$5,88115510.9
GeForce RTX 509032$6,51315512.1
RTX PRO 5000 Blackwell 48GB48$6,95915511.9
MacBook Pro M5 Max 128GB128$8,14815510.9
RTX PRO 5000 Blackwell 72GB72$9,66515511.9
RTX PRO 6000D84$10,11115512
RTX PRO 6000 Blackwell96$18,42215512.1
Arc Pro B653215510.6
GeForce RTX 4080 SUPER 32GB3215511.4
Instinct MI1003215511.6
Ryzen AI Max+ 395 128GB1281559

Deploy DeepSeek V4 Flash 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-Flash-0731-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-Flash-0731

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

FAQ

How much VRAM does DeepSeek V4 Flash need?

At Q4_K_M with an 8K context DeepSeek V4 Flash needs about 160GB of VRAM; 192GB leaves comfortable headroom.

What is the cheapest GPU that runs DeepSeek V4 Flash?

The Mac Studio M3 Ultra 512GB: 512GB of VRAM, currently about $19,315, at roughly 47.2 tokens/s.

Can you run DeepSeek V4 Flash with Ollama?

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