GPUs tracked39Price history3 dayssince Sep 3, 2026Price points (24h)11,753 pointsBiggest 24h dropBiggest 24h riseData updated Sep 5, 2026

How Much VRAM Does gpt-oss 120B Need to Run Locally?

See devices that run it

gpt-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

Launch dateAug 4, 2025
Hugging Face repoopenai/gpt-oss-120b
Revision
LicenseApache-2.0
ArchitectureMoE
Ollama taggpt-oss:120b
Downloads (30d)5,259,501
Min VRAM at Q467 GB · Q4_K_M · 8K
Experts offloaded4 GB VRAM + 65 GB RAM
Parameters116.8B
MoE5.1B
Layers36
Hidden size2,880
KV heads8
Head dim64
Max context128K
VendorOpenAI

VRAM needed for gpt-oss 120B by quantization and context

Total at 8K

MoE: all 116.8B parameters must stay resident in memory, while speed is set by the 5.1B active per token.

QuantizationWeightsGBTotal at 8KGBTotal at 32KGBTotal at 128KGB
Q4_K_M62.8GGUF66.768.475.1
Q5_K_M62.9GGUF80.482.188.8
Q8_063.4GGUF122.7124.4131.1
FP1665.4GGUF230.1231.7238.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
DeviceVRAMGBUsed priceEst. t/sSuggested context
RTX PRO 5000 Blackwell 72GB72No listings135.332K
RTX PRO 6000D84No listings144.8128K
RTX PRO 6000 Blackwell96No listings152.9128K
Mac Studio M4 Max 128GB128No listings68.4128K
Mac Studio M5 Max 128GB128No listings74.4128K
MacBook Pro M4 Max 128GB128No listings68.4128K
MacBook Pro M5 Max 128GB128No listings74.4128K
Mac Studio M3 Ultra 512GB512No listings90.3128K

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.

Run gpt-oss 120B with Ollama, llama.cpp or vLLM

Ollama

Ollama pulls and runs it in one command; the quantization comes from the official tag.

ollama run gpt-oss:120b
llama.cpp

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

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.