How Much VRAM Does gpt-oss 120B Need to Run Locally?
See devices that run itgpt-oss 120B is a MoE model with 116.8B total parameters and 5.1B active per token. At Q4 it needs 67GB of VRAM to sit entirely on the GPU; with experts offloaded to system RAM it needs only 4GB of VRAM plus 65GB of RAM. The cheapest device that holds it is the RTX PRO 5000 Blackwell 72GB, with no used-price data yet, at roughly 135.3 tokens/s. In offload mode the cheapest card that runs it is the GeForce RTX 2080 Ti, at roughly 21 tokens/s.
gpt-oss 120B details
VRAM needed for gpt-oss 120B by quantization and context
Total at 8KMoE: all 116.8B parameters must stay resident in memory, while speed is set by the 5.1B active per token.
| Quantization | WeightsGB | Total at 8KGB | Total at 32KGB | Total at 128KGB |
|---|---|---|---|---|
| Q4_K_M | 62.8GGUF | 66.7 | 68.4 | 75.1 |
| Q5_K_M | 62.9GGUF | 80.4 | 82.1 | 88.8 |
| Q8_0 | 63.4GGUF | 122.7 | 124.4 | 131.1 |
| FP16 | 65.4GGUF | 230.1 | 231.7 | 238.5 |
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 128K limit show a dash.
Which GPUs can run gpt-oss 120B?
Q4_K_M · 8K context · sorted by eBay used price| Device | VRAMGB | Used price | Est. t/s | Suggested context |
|---|---|---|---|---|
| 72 | —No listings | 135.3 | 32K | |
| 84 | —No listings | 144.8 | 128K | |
| 96 | —No listings | 152.9 | 128K | |
| Mac Studio M4 Max 128GB | 128 | —No listings | 68.4 | 128K |
| Mac Studio M5 Max 128GB | 128 | —No listings | 74.4 | 128K |
| MacBook Pro M4 Max 128GB | 128 | —No listings | 68.4 | 128K |
| MacBook Pro M5 Max 128GB | 128 | —No listings | 74.4 | 128K |
| Mac Studio M3 Ultra 512GB | 512 | —No listings | 90.3 | 128K |
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.
GPUs that run gpt-oss 120B with experts offloaded to RAM
Expert weights live in system RAM (needs at least 65 GB); VRAM holds only attention layers, shared experts and the KV cache, at least 4 GB at Q4. Speed is bound by RAM bandwidth (estimated at 70 GB/s) and is far slower than a full-VRAM setup.
| Device | VRAMGB | Used price | RAM neededGB | Est. t/s |
|---|---|---|---|---|
| 11 | — | 65 | 20.6 | |
| 16 | — | 65 | 20.8 | |
| 16 | — | 65 | 20.9 | |
| 16 | — | 65 | 21 | |
| 16 | — | 65 | 20.2 | |
| 16 | — | 65 | 20.2 | |
| 16 | — | 65 | 21 | |
| 20 | — | 65 | 20.5 | |
| 24 | — | 65 | 19.4 | |
| 24 | — | 65 | 21 | |
| 24 | — | 65 | 21 | |
| 24 | — | 65 | 21.2 | |
| 24 | — | 65 | 20.7 | |
| 24 | — | 65 | 20.7 | |
| 32 | — | 65 | 20 | |
| 32 | — | 65 | 20 | |
| 32 | — | 65 | 20.8 | |
| 32 | — | 65 | 21.4 | |
| 32 | — | 65 | 21.4 | |
| 32 | — | 65 | 20.9 | |
| 32 | — | 65 | 20.2 | |
| 32 | — | 65 | 20.1 | |
| 32 | — | 65 | 20.9 | |
| 32 | — | 65 | 21 | |
| 40 | — | 65 | 21.3 | |
| 40 | — | 65 | 21.3 | |
| 48 | — | 65 | 21 | |
| 48 | — | 65 | 20.6 | |
| 48 | — | 65 | 21.2 | |
| 64 | — | 65 | 21.3 | |
| 64 | — | 65 | 21.1 |
Run gpt-oss 120B with Ollama, llama.cpp or vLLM
Ollama pulls and runs it in one command; the quantization comes from the official tag.
ollama run gpt-oss:120b
llama.cpp pulls the GGUF straight from Hugging Face; -c sets the context length.
llama-server -hf unsloth/gpt-oss-120b-GGUF:Q4_K_M -c 8192
vLLM serves the original-precision weights, which needs far more memory than GGUF and usually more than one GPU.
vllm serve openai/gpt-oss-120b
File names follow that week's model-library snapshot; the definitions are in the methodology. Methodology
FAQ
How much VRAM does gpt-oss 120B need?
At Q4_K_M with an 8K context gpt-oss 120B needs about 67GB of VRAM; 84GB leaves comfortable headroom.
What is the cheapest GPU that runs gpt-oss 120B?
The RTX PRO 5000 Blackwell 72GB: 72GB of VRAM at roughly 135.3 tokens/s. We have no used-price data for it yet.
Can you run gpt-oss 120B with Ollama?
Yes: ollama run gpt-oss:120b.