# Test-Time Compute Scaling: Spending More Inference on Harder Reasoning Status: public Confidence: medium (0.82) (verified) Last verified: 2026-05-30 Generation: ai_structured ## TL;DR Test-time compute scaling improves reasoning by spending more computation during inference instead of only training a larger model. The main patterns are repeated sampling, search over reasoning paths, verifier-guided selection, and adaptive allocation of more compute to harder prompts. ## Core Explanation The basic idea is simple: a model can answer once, or it can generate multiple candidate solutions, critique them, search over intermediate reasoning states, and choose a better final answer. OpenAI's o1 public report made this pattern visible in a commercial reasoning model, while academic work studies more transparent mechanisms such as best-of-N sampling, compute-optimal allocation, and Tree of Thoughts search. This is not free capability. More inference compute increases latency and cost, and weak verifiers can select confident but wrong answers. The practical question is therefore not "does more thinking help?" but "which prompts deserve more compute, which search strategy is reliable, and when should the system fall back to a simpler answer path?" ## Related Articles - [AI Reasoning Models: OpenAI o1/o3 and DeepSeek-R1](../reasoning-models.md) - [Knowledge Graph Reasoning: Embedding-Based Link Prediction, Logical Inference, and Neurosymbolic Methods](../knowledge-graph-reasoning.md) - [Large Language Model Training: Scaling Laws, Data Curation, and Compute](../large-language-model-training-scaling-laws-data-curation-and-compute.md)