GPUs tracked45Price history8 dayssince Sep 3, 2026Price points (24h)6,955 pointsBiggest 24h dropBiggest 24h riseData updated

How to Deploy gpt-oss 120B Locally

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 card that runs it today is the Ryzen AI Max+ 395 128GB at about $3,913, at roughly 34.6 tokens/s. In offload mode the cheapest card that runs it is the Tesla V100 16GB, 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
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

How much VRAM does gpt-oss 120B need for local deployment?

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
1-bit27.4est.2930.737.4
2-bit43.4est.4546.753.4
3-bit62.6GGUF57.559.266
4-bit62.8GGUF66.768.475.1
5-bit62.9GGUF80.482.188.8
8-bit63.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. Each tier takes whichever file of that bit width the repository has, preferring unsloth dynamic quants, so the exact file name varies by model.

Which GPUs can run gpt-oss 120B?

AmazonJP
DeviceVRAMGBPriceEst. t/sSuggested context
Ryzen AI Max+ 395 128GB128$3,9136 listings34.6128K
DGX Spark 128GB128$8,2233 listings48.3128K
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.

Recommended GPUs for gpt-oss 120B with CPU/GPU offloading

AmazonJP

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.

DeviceVRAMGBPriceRAM neededGBEst. t/s
Tesla V100 16GB16$6596521
Radeon RX 9070 XT16$8846520.2
GeForce RTX 5060 Ti 16GB16$9246520.2
GeForce RTX 507012$9566520.7
Radeon RX 7800 XT16$9666520.2
Tesla V100 32GB32$1,1416521
Arc Pro B6024$1,1646519.4
Radeon RX 7900 XT20$1,2446520.5
Radeon RX 6950 XT16$1,4046520.1
GeForce RTX 5070 Ti16$1,5766520.9
Radeon RX 7900 XTX24$1,7386520.7
GeForce RTX 508016$1,8686521
Arc Pro B7032$2,0746520
GeForce RTX 408016$2,1876520.8
Radeon AI PRO R970032$2,2446520.2
GeForce RTX 309024$2,5206521
RTX PRO 4000 Blackwell24$3,9566520.7
GeForce RTX 409024$4,9056521
GeForce RTX 509032$7,4896521.4
GeForce RTX 2080 Ti 22GB226520.6
GeForce RTX 5090 D V2246521.2
Arc Pro B65326520
GeForce RTX 4080 SUPER 32GB326520.8
GeForce RTX 5090 D326521.4
Instinct MI100326520.9
Instinct MI50 32GB326520.8
Radeon PRO W7800326520.1
RTX PRO 4500 Blackwell326520.9
A100 40GB PCIe406521.3
CMP 170HX 40GB406521.3
GeForce RTX 4090 48GB486521
Radeon PRO W7900486520.6
RTX PRO 5000 Blackwell 48GB486521.2
CMP 170HX 64GB646521.3
Instinct MI210646521.1

Deploy gpt-oss 120B locally 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 Ryzen AI Max+ 395 128GB: 128GB of VRAM, currently about $3,913, at roughly 34.6 tokens/s.

Can you run gpt-oss 120B with Ollama?

Yes: ollama run gpt-oss:120b.