Can fixed points replace learned halt tokens in reasoning models?
Does stopping inference when a looped transformer's internal state stabilizes provide a better halting signal than training a dedicated token predictor? This matters for building adaptive compute without expensive special training.
Adaptive test-time compute needs two things: flexibility (the option to spend variable compute) and adaptivity (a rule for when to stop). Chain-of-thought supplies both, but it pays for them with a special training regime and a learned halt token predicted from hand-crafted traces. FPRM (Fixed-Point Reasoning Model) proposes that a looped transformer already carries an intrinsic stopping signal: keep applying the shared block until the latent state stops moving — until it reaches a fixed point — then halt. The halting decision becomes a property of the computation itself rather than an extra prediction head bolted on top.
This is a sharper version of an observation the vault already holds. Since How do looped language models actually improve reasoning in depth?, the fixed-point structure of looped models is not incidental — it is what FPRM converts into a control mechanism. The payoff is difficulty calibration: FPRM reportedly halts closer to the accuracy-saturation point than Can tiny recursive networks outperform massive language models?'s ACT-style halting, which tends to stop too early (losing accuracy) or too late (wasting compute). It also reframes Can we allocate inference compute based on prompt difficulty? at the architectural rather than orchestration level: depth is allocated per-input by convergence, not by an external budget controller.
The honest caveat: fixed-point halting only works if the loop is built to converge. FPRM's gains lean on pre-norm layers and residual scaling to fix the signal-propagation problem that deferred halting otherwise induces. So "stop when stable" is not free — it presupposes architectural work to make stability a reliable signal rather than premature collapse. The strongest counterargument is that convergence and correctness can diverge: a model can settle confidently on a wrong fixed point, in which case stability becomes a false halt.
Inquiring lines that use this note as a source 8
This note is a source for these synthesized inquiries. Follow a line forward into its question, or open it to trace back to all of its sources.
- Can recurrent transformers track state more efficiently than feedforward models?
- Do looped transformers naturally converge to fixed points during inference?
- How do pre-norm layers enable reliable fixed-point halting signals?
- How stable are the fixed points in recurrent transformer blocks?
- Should loop count be fixed at training time or selected at test time?
- Can looped models be designed to avoid oscillation in later iterations?
- How do parallel loops with position offsets differ from sequential loop architectures?
- What makes fixed-point convergence better than learned halt tokens?
Related concepts in this collection 3
This note in its neighbourhood — explore the map, then jump to a related concept in the list below.
Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph
-
How do looped language models actually improve reasoning in depth?
Mechanistic analysis investigates whether looping transformer layers creates genuinely new computation or reuses existing inferential stages. Understanding this distinction clarifies why recurrent depth can match standard scaling.
grounds: supplies the fixed-point geometry FPRM turns into a halting rule
-
Can tiny recursive networks outperform massive language models?
Can a small network that recursively refines its reasoning on a latent state match or beat billion-parameter LLMs on hard reasoning puzzles? This challenges assumptions about scale and hierarchy in AI reasoning.
contrasts: TRM's ACT halting that FPRM claims to outperform on compute calibration
-
Can we allocate inference compute based on prompt difficulty?
Does adjusting how much compute each prompt receives—rather than using a fixed budget—improve model performance? Could smarter allocation let smaller models compete with larger ones?
convergent-with: adaptive per-input compute, but FPRM achieves it architecturally rather than via an external controller
Related papers in this collection 8
Papers most semantically related to this note, ranked by cosine similarity in the embedding space.
- Fixed-Point Reasoners: Stable and Adaptive Deep Looped Transformers
- A Mechanistic Analysis of Looped Reasoning Language Models
- Think before you speak: Training Language Models With Pause Tokens
- Scaling up Test-Time Compute with Latent Reasoning: A Recurrent Depth Approach
- Grokked Transformers are Implicit Reasoners: A Mechanistic Journey to the Edge of Generalization
- Can Looped Transformers Learn to Implement Multi-step Gradient Descent for In-context Learning?
- Repeat After Me: Transformers are Better than State Space Models at Copying
- The Topological Trouble With Transformers
Original note title
fixed-point convergence is a better halting signal than a learned halt token because the model stops when its own reasoning stabilizes