Can It Run?
Home โ€บ DeepSeek V4 Flash โ€บ M2 Ultra 192GB

Can an M2 Ultra 192GB Mac run DeepSeek V4 Flash?

M2 Ultra ยท 192 GB unified memory ยท 800 GB/s ยท Mac Studio (M2 Ultra), Mac Pro (M2 Ultra)

Just barely โ€” and you will feel it.

DeepSeek V4 Flash at Q4_K_M needs about 175.7 GiB against roughly 176.0 GiB usable โ€” that is 100% of your budget. It will load, but close your browser first, keep the context short, and expect memory pressure. Around 4 tokens/sec.

Weights
166.0 GiB
290.94B params @ Q4_K_M
KV cache
0.7 GiB
8K context, FP16
Overhead
9.1 GiB
runtime + activations
Total needed
175.7 GiB
of ~176.0 GiB usable
Est. speed
4 tok/s
800 GB/s bandwidth
Max context
8K tokens
at Q4_K_M

Where the memory goes

Three things occupy memory when a model is loaded: the weights themselves, the KV cache that holds the conversation, and the runtime's own working buffers. Only the first is fixed โ€” the KV cache grows with every token in your context.

QuantisationWeightsTotalTok/sFits?
FP16541.9 GiB570.5 GiB1No
Q8_0287.9 GiB303.8 GiB2No
Q6_K223.5 GiB236.2 GiB3No
Q5_K_M193.1 GiB204.2 GiB3No
Q4_K_M166.0 GiB175.7 GiB4Yes, but tight
Q3_K_M132.1 GiB140.2 GiB5Yes, comfortably
Q2_K101.6 GiB108.2 GiB6Yes, comfortably

The default. Best quality-per-gigabyte for most people.

How long a context fits

The KV cache is often what breaks a setup that looked fine at load time. Quantising it to 8-bit roughly halves its footprint with little measurable quality cost.

ContextKV cacheTotalFP16 KVQ8 KV
2K0.2 GiB175.0 GiBYes, but tightYes, but tight
4K0.3 GiB175.2 GiBYes, but tightYes, but tight
8K0.7 GiB175.7 GiBYes, but tightYes, but tight
16K1.3 GiB176.7 GiBNoNo
32K2.7 GiB178.6 GiBNoNo
128K10.8 GiB190.3 GiBNoNo

What to run instead on an M2 Ultra 192GB Mac

These are the largest models that fit comfortably on this machine at Q4_K_M with an 8K context.

ModelSizeTotalTok/s
gpt-oss-120b116.8B71.3 GiB128Yes, comfortably
Qwen2.5 72B72.7B46.8 GiB14Yes, comfortably
DeepSeek-R1-Distill-Llama-70B70.6B45.6 GiB15Yes, comfortably
Llama 3.3 70B70.6B45.6 GiB15Yes, comfortably
Mixtral 8x7B46.7B29.8 GiB51Yes, comfortably
DeepSeek-R1-Distill-Qwen-32B32.8B22.4 GiB32Yes, comfortably

How to run it

Ollama is the shortest path. It picks a quantisation automatically โ€” usually Q4_K_M, which is what the numbers above assume.

brew install ollama
ollama serve &
ollama run deepseek-v4-flash

For MLX โ€” Apple's own array framework, typically a little faster than llama.cpp on Apple Silicon:

pip install mlx-lm
mlx_lm.generate --model mlx-community/DeepSeek-V4-Flash-4bit --prompt "Hello"
You are close to the limitIf it stutters or gets killed, raise the Metal memory cap before loading: sudo sysctl iogpu.wired_limit_mb=167116. This resets on reboot. Quantising the KV cache (--kv-cache-type q8_0 in llama.cpp) buys back 0.3 GiB.

Macs that run DeepSeek V4 Flash comfortably

The smallest configuration that handles it is the M3 Ultra 256GB (Mac Studio (M3 Ultra)).

MacMemoryBandwidthTok/s
M3 Ultra 256GB256 GB819 GB/s4
M3 Ultra 512GB512 GB819 GB/s4

Common questions

Can an M2 Ultra 192GB Mac run DeepSeek V4 Flash?
Yes. At Q4_K_M it needs about 175.7 GiB of the roughly 176.0 GiB available, generating around 4 tokens per second.
How fast is DeepSeek V4 Flash on an Mac?
Around 4 tokens per second. Token generation on Apple Silicon is limited by memory bandwidth, and this machine has 800 GB/s.
How much memory does DeepSeek V4 Flash need?
166.0 GiB for the weights at Q4_K_M, plus 0.7 GiB for an 8K-token KV cache and about 9.1 GiB of runtime overhead โ€” 175.7 GiB in total.