3 min read

gpt-oss-120B delivers 3,000 tokens/s on Cerebras

gpt-oss-120BCerebrasинференс LLM

gpt-oss-120B is reported to reach roughly 3,000 tokens per second on Cerebras infrastructure while streaming with a 128k context. This is not a universal model benchmark but the result of a specialized inference stack. For AI agents, that throughput can reduce pauses between reasoning, tool calls, and subsequent actions.

Where the 3,000 tokens per second figure comes from

It is important to separate the model from the machine: the roughly 3,000 tokens/s figure is claimed for gpt-oss-120B specifically on Cerebras infrastructure. It reflects a particular deployment, not a speed the model will automatically achieve on every server. At launch, Cerebras listed this result in its inference documentation, including streamed operation with the full 128k context.

OpenAI describes gpt-oss-120B in its launch announcement as a 120-billion-parameter MoE model. It has 36 layers and 128 experts in each layer, while only four experts are activated for a given token. That sparsity reduces the amount of computation compared with a dense model of similar total size.

The other part of the story is hardware. Cerebras attributes the acceleration to its wafer-scale architecture, designed to avoid typical GPU memory-bandwidth limits and communication overhead between accelerators. This is why the number is interesting: it is not merely an optimized checkpoint, but a model paired with a specialized inference stack.

For perspective, cited independent results put peak gpt-oss-120B speed at about 511 tokens/s on one H100 and 849 tokens/s on one H200. The comparison does not prove superiority in every setting, but it clearly shows how dependent the result is on hardware. I would also examine time to first token, input length, concurrent requests, and sustained rather than peak throughput.

Why agents will notice the difference first

The main change is simple: generation stops being the slowest stage of the agent loop. When a model produces reasoning or a command quickly, an agent can move sooner to search, code execution, or the next tool call. The effect is especially visible in long chains, where a small delay is repeated many times.

This makes interactive coding assistants, rapid document analysis, and multistep research workflows more practical. Long context becomes more usable too: supporting 128k is not enough if users still have to wait for generation after a large input.

Still, 3,000 tokens/s says nothing about reasoning quality, request cost, or behavior under load. If time to first token or competition between sessions rises, an impressive peak figure quickly loses its appeal. The real milestone is not a speed record, but the ability to sustain that speed inside a real agent workflow.

We previously examined how Claude Opus 4.6 configurations affect context costs and practical model architecture. That perspective helps put a 120b model delivering 3,000 tokens per second in context beyond the headline speed figure.