Can It Run?
Home โ€บ Mixtral 8x7B โ€บ M4 Max 36GB

Can an M4 Max 36GB Mac run Mixtral 8x7B?

M4 Max ยท 36 GB unified memory ยท 410 GB/s ยท MacBook Pro 14" (M4 Max)

Just barely โ€” and you will feel it.

Mixtral 8x7B at Q4_K_M needs about 29.8 GiB against roughly 30.6 GiB usable โ€” that is 97% of your budget. It will load, but close your browser first, keep the context short, and expect memory pressure. Around 26 tokens/sec.

Weights
26.6 GiB
46.7B params @ Q4_K_M
KV cache
1.0 GiB
8K context, FP16
Overhead
2.1 GiB
runtime + activations
Total needed
29.8 GiB
of ~30.6 GiB usable
Est. speed
26 tok/s
410 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?
FP1687.0 GiB93.1 GiB8No
Q8_046.2 GiB50.3 GiB15No
Q6_K35.9 GiB39.5 GiB19No
Q5_K_M31.0 GiB34.3 GiB22No
Q4_K_M26.6 GiB29.8 GiB26Yes, but tight
Q3_K_M21.2 GiB24.1 GiB33Yes, comfortably
Q2_K16.3 GiB18.9 GiB42Yes, 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.3 GiB28.8 GiBYes, but tightYes, but tight
4K0.5 GiB29.1 GiBYes, but tightYes, but tight
8K1.0 GiB29.8 GiBYes, but tightYes, but tight
16K2.0 GiB31.1 GiBNoYes, but tight
32K4.0 GiB33.7 GiBNoNo

What to run instead on an M4 Max 36GB Mac

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

ModelSizeTotalTok/s
DeepSeek-R1-Distill-Qwen-32B32.8B22.4 GiB16Yes, comfortably
Qwen2.5 32B32.8B22.4 GiB16Yes, comfortably
Qwen2.5-Coder 32B32.8B22.4 GiB16Yes, comfortably
Qwen3 32B32.8B22.4 GiB16Yes, comfortably
Qwen3 30B-A3B30.5B19.8 GiB101Yes, comfortably
Gemma 3 27B27.4B21.1 GiB20Yes, 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 mixtral:8x7b

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/Mixtral-8x7B-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=31334. This resets on reboot. Quantising the KV cache (--kv-cache-type q8_0 in llama.cpp) buys back 0.5 GiB.

Macs that run Mixtral 8x7B comfortably

The smallest configuration that handles it is the M4 Pro 48GB (Mac mini (M4 Pro)).

MacMemoryBandwidthTok/s
M4 Pro 48GB48 GB273 GB/s17
M4 Max 48GB48 GB546 GB/s35
M1 Max 64GB64 GB400 GB/s25
M2 Ultra 64GB64 GB800 GB/s51
M4 Pro 64GB64 GB273 GB/s17
M4 Max 64GB64 GB546 GB/s35
M2 Max 96GB96 GB400 GB/s25
M3 Ultra 96GB96 GB819 GB/s52
M3 Max 128GB128 GB400 GB/s25
M4 Max 128GB128 GB546 GB/s35
M2 Ultra 192GB192 GB800 GB/s51
M3 Ultra 256GB256 GB819 GB/s52

Common questions

Can an M4 Max 36GB Mac run Mixtral 8x7B?
Yes. At Q4_K_M it needs about 29.8 GiB of the roughly 30.6 GiB available, generating around 26 tokens per second.
How fast is Mixtral 8x7B on an Mac?
Around 26 tokens per second. Token generation on Apple Silicon is limited by memory bandwidth, and this machine has 410 GB/s. Because this is a mixture-of-experts model only 12.9B of its 46.7B parameters are read per token, which is why it is faster than its size suggests.
How much memory does Mixtral 8x7B need?
26.6 GiB for the weights at Q4_K_M, plus 1.0 GiB for an 8K-token KV cache and about 2.1 GiB of runtime overhead โ€” 29.8 GiB in total.