Can It Run?
Home โ€บ DeepSeek V4 Flash โ€บ M3 Ultra 256GB

Can an M3 Ultra 256GB Mac run DeepSeek V4 Flash?

M3 Ultra ยท 256 GB unified memory ยท 819 GB/s ยท Mac Studio (M3 Ultra)

Yes โ€” DeepSeek V4 Flash runs on an M3 Ultra 256GB Mac.

At Q4_K_M it needs about 175.7 GiB, leaving 64.3 GiB spare out of the ~240.0 GiB macOS will let you use. Expect roughly 4 tokens/sec โ€” too slow for interactive use.

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 ~240.0 GiB usable
Est. speed
4 tok/s
819 GB/s bandwidth
Max context
128K 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 GiB3Yes, but tight
Q5_K_M193.1 GiB204.2 GiB3Yes, but tight
Q4_K_M166.0 GiB175.7 GiB4Yes, comfortably
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, comfortablyYes, comfortably
4K0.3 GiB175.2 GiBYes, comfortablyYes, comfortably
8K0.7 GiB175.7 GiBYes, comfortablyYes, comfortably
16K1.3 GiB176.7 GiBYes, comfortablyYes, comfortably
32K2.7 GiB178.6 GiBYes, comfortablyYes, comfortably
128K10.8 GiB190.3 GiBYes, comfortablyYes, 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"

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 M3 Ultra 256GB Mac run DeepSeek V4 Flash?
Yes. At Q4_K_M it needs about 175.7 GiB of the roughly 240.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 819 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.