Can It Run?
Home โ€บ DeepSeek-R1-Distill-Llama-70B โ€บ M2 Ultra 64GB

Can an M2 Ultra 64GB Mac run DeepSeek-R1-Distill-Llama-70B?

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

Yes โ€” DeepSeek-R1-Distill-Llama-70B runs on an M2 Ultra 64GB Mac.

At Q4_K_M it needs about 45.6 GiB, leaving 8.8 GiB spare out of the ~54.4 GiB macOS will let you use. Expect roughly 15 tokens/sec โ€” slow but workable for background tasks.

Weights
40.3 GiB
70.6B params @ Q4_K_M
KV cache
2.5 GiB
8K context, FP16
Overhead
2.8 GiB
runtime + activations
Total needed
45.6 GiB
of ~54.4 GiB usable
Est. speed
15 tok/s
800 GB/s bandwidth
Max context
32K 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?
FP16131.5 GiB141.4 GiB5No
Q8_069.9 GiB76.7 GiB9No
Q6_K54.2 GiB60.3 GiB11No
Q5_K_M46.8 GiB52.5 GiB13Yes, but tight
Q4_K_M40.3 GiB45.6 GiB15Yes, comfortably
Q3_K_M32.1 GiB37.0 GiB19Yes, comfortably
Q2_K24.7 GiB29.2 GiB24Yes, 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.6 GiB43.5 GiBYes, comfortablyYes, comfortably
4K1.3 GiB44.2 GiBYes, comfortablyYes, comfortably
8K2.5 GiB45.6 GiBYes, comfortablyYes, comfortably
16K5.0 GiB48.4 GiBYes, but tightYes, comfortably
32K10.0 GiB54.0 GiBYes, but tightYes, but tight
128K40.0 GiB87.6 GiBNoNo

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-r1:70b

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-R1-Distill-Llama-70B-4bit --prompt "Hello"

Macs that run DeepSeek-R1-Distill-Llama-70B comfortably

The smallest configuration that handles it is the M1 Max 64GB (MacBook Pro 16" (M1 Max)).

MacMemoryBandwidthTok/s
M1 Max 64GB64 GB400 GB/s7
M2 Ultra 64GB64 GB800 GB/s15
M4 Pro 64GB64 GB273 GB/s5
M4 Max 64GB64 GB546 GB/s10
M2 Max 96GB96 GB400 GB/s7
M3 Ultra 96GB96 GB819 GB/s15
M3 Max 128GB128 GB400 GB/s7
M4 Max 128GB128 GB546 GB/s10
M2 Ultra 192GB192 GB800 GB/s15
M3 Ultra 256GB256 GB819 GB/s15
M3 Ultra 512GB512 GB819 GB/s15

Common questions

Can an M2 Ultra 64GB Mac run DeepSeek-R1-Distill-Llama-70B?
Yes. At Q4_K_M it needs about 45.6 GiB of the roughly 54.4 GiB available, generating around 15 tokens per second.
How fast is DeepSeek-R1-Distill-Llama-70B on an Mac?
Around 15 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-R1-Distill-Llama-70B need?
40.3 GiB for the weights at Q4_K_M, plus 2.5 GiB for an 8K-token KV cache and about 2.8 GiB of runtime overhead โ€” 45.6 GiB in total.