Test-Time Compute and GRPO in Practice: From PPO to Critic-Free Reinforcement Learning A developer detailed how frontier LLM development is shifting from pre-training scaling to test-time compute scaling, outlining three architectural regimes: sequential chain-of-thought expansion, leaf-level sampling and voting, and prefix-level search with process reward models. The writeup argues that PPO's four-network setup becomes impractical for reasoning models with 10k+ token outputs, and that DeepSeek-R1's fusion of sequential CoT expansion with critic-free reinforcement learning (GRPO) shows pure rule-based RL can induce deep reasoning without hand-engineered step-level PRMs. For the past several years, the foundational law of frontier LLM development was Chinchilla's Pre-training Scaling Laws : stack deeper transformer layers, ingest multi-trillion token corpora, and burn increasingly massive GPU clusters. However, entering 2026, this brute-force approach has encountered formidable physical and thermodynamic bottlenecks: As pre-training scaling slows, frontier reasoning engines such as OpenAI o1/o3 and DeepSeek-R1 have ignited a secondary growth curve: Test-Time Compute Scaling Laws . graph LR subgraph Traditional Paradigm: One-Shot Pre-training Inference A1 "Complex Math/Coding Prompt" -- A2 "70B~400B Dense Base LLM" -- A3 "Greedy Decoding Prone to Hallucinations " end subgraph Reasoning Paradigm: Test-Time Compute Scaling B1 "Complex Math/Coding Prompt" -- B2 "Compact Base Model" -- B3 "Extended Chain-of-Thought CoT " -- B4 "Self-Verification & Backtracking" -- B5 "Deterministic Accurate Solution" end Rather than spending millions of dollars during pre-training to memorize answers to every conceivable question, test-time scaling trains models to allocate dynamic computation at inference time—thinking, calculating, and self-correcting before providing a response. In modern literature, extending test-time compute falls into three primary architectural regimes: | Scaling Regime | Core Mechanism | Primary Compute Bottleneck | Representative Work | Bottlenecks & Failure Modes | |---|---|---|---|---| | 1. Sequential CoT Expansion | The model outputs multi-thousand token chains of thought