AI inference glossary
Model architecture

Reasoning model

Also known as thinking model, test-time compute, chain-of-thought model

In plain English

A reasoning model generates long hidden chains of thought before answering, trading extra output tokens for better results on hard problems.

Technical definition

A reasoning model is an LLM trained to spend additional generated tokens working through a problem, producing extended intermediate reasoning before or alongside its final answer.

Engineering details

Instead of scaling only training compute, reasoning models scale test time compute: they think in tokens. A single math or coding query can trigger thousands of tokens of internal deliberation, so output lengths explode relative to chat models. For serving, that shifts load heavily toward decode, inflates KV cache residency per request, and makes tokens per second per user the metric that decides whether a hard query answers in seconds or minutes.

Why it matters

Reasoning turned inference into the scaling frontier: capability now improves by spending more at serving time, which multiplies demand for decode throughput. It reshaped hardware priorities toward memory bandwidth and interconnect, and it is a core reason agentic workloads dominate current benchmark design.

How to read it in InferenceX

The frontier models InferenceX benchmarks are reasoning capable, and its scenarios reflect their traffic: long generations in fixed sequence tests and full agent sessions in AgentX, where deliberation and tool use interleave over many turns.