FPRM: Breaking the Depth Barrier in Looped Transformers with Fixed-Point Reasoning

Fixed-Point Reasoners: Stable and Adaptive Deep Looped Transformers

2026-06-01
Sajad Movahedi, Vera Milovanović, Shlomo Libo Feigin, Alexander Theus, Thomas Hofmann, Valentina Boeva, T. Konstantin Rusch, Antonio Orvieto
Summary
Problem
Method
Results
Takeaways
Abstract

The paper introduces FPRM (Fixed-Point Reasoning Model), a Looped Transformer architecture that achieves state-of-the-art performance on reasoning benchmarks like Sudoku-Extreme and ARC-AGI by using hidden-state convergence as an adaptive halting mechanism. Unlike prior work, FPRM utilizes pre-norm layers and specialized residual scaling to solve signal propagation issues, enabling stable training across very deep effective layers.

Executive Summary

TL;DR: FPRM (Fixed-Point Reasoning Model) is a new class of Looped Transformer that solves the instability of deep recurrent computation. By combining pre-norm layers with learned residual scaling, it maintains stable signal propagation across thousands of iterations. It replaces complex halting modules with a simple, elegant rule: stop when the latent state stops changing (fixed-point convergence).

Background: This work sits at the intersection of Looped Transformers and Deep Equilibrium Models (DEQ). While recent models like TRM and HRM relied on "hierarchical" loops to manage depth, FPRM proves that a simpler, non-hierarchical model can outperform them if the underlying signal propagation is fixed.

The Core Conflict: Stability vs. Trainability

In a Looped Transformer, the same layer is applied repeatedly (). This creates an "effective depth" that can reach hundreds of layers.

  • Post-norm (used by prior SOTA): Keeps activations from blowing up but "stifles" the gradient, making it hard for the model to learn complex, multi-step algorithms.
  • Pre-norm: Allows gradients to flow freely but causes activations to grow exponentially, eventually crashing the training.

FPRM introduces Residual Scaling to have the best of both worlds. By scaling the residual stream and the sub-layer output , the authors mathematically prove that activations remain bounded even as depth goes to infinity.

Signal Propagation and Adaptivity Figure 1: FPRM scales compute more effectively than traditional Transformers as task difficulty increases.

Methodology: The Fixed-Point "Halting" Insight

The most "academic" contribution here is how the model decides when to stop. Instead of training a separate "halting head" (which is notoriously hard to optimize due to discrete decisions), FPRM essentially asks: Has the reasoning converged?

  1. Iterative Step: .
  2. Damping: To prevent the model from "spiraling" or oscillating around a solution, they use a damped update: .
  3. Halting: Once , the "thought" is complete.

This makes the "Test-Time Compute" truly adaptive. A simple Sudoku puzzle might take 20 iterations, while an "Extreme" one might take 500.

Model Architecture Figure 2: The architecture of FPRM, highlighting the pre-norm and scaling components.

Experimental Triumphs

FPRM was tested on the most grueling symbolic reasoning tasks:

  • Sudoku-Extreme: Achieved 94.2% accuracy, crushing previous 7M and even 27M parameter models.
  • ARC-AGI: On the ARC-1 benchmark, it reached 47.5%, showing that compact, recurrent models can sometimes rival massive LLMs (like DeepSeek-R1 or Claude) on pure logic puzzles.
  • State Tracking: Unlike TRM, FPRM showed near-perfect length generalization by scaling its "pondering" time linearly with the input sequence length.

Performance Comparison Table 1: FPRM outperforms hierarchical models across multiple benchmarks.

Critical Analysis & Conclusion

The Takeaway: FPRM suggests that the "Hierarchy" in previous reasoning models might have just been a band-aid for poor signal propagation. By fixing the math behind the residual stream, a "flat" looped model becomes significantly more powerful.

Limitations: While FPRM is a master of symbolic logic, it hasn't been tested on natural language. Converting these "fixed-point thoughts" into fluent text remains an open challenge.

Future Outlook: We are moving toward a world where model size matters less than "Test-Time Compute". FPRM provides a blueprint for how small, efficient models can "think" longer to solve problems that take a static-depth model by surprise.

Find Similar Papers

Try Our Examples

  • Search for recent papers using fixed-point iterations or Deep Equilibrium Models (DEQ) specifically for symbolic reasoning and puzzle-solving tasks.
  • Which study first identified the "rank collapse" problem in deep Transformers, and how does FPRM's residual scaling theoretically compare to those original solutions?
  • Investigate if the fixed-point halting mechanism in FPRM has been applied to vision-language models or large-scale generative NLP beyond algorithmic benchmarks.
Contents
FPRM: Breaking the Depth Barrier in Looped Transformers with Fixed-Point Reasoning
1. Executive Summary
2. The Core Conflict: Stability vs. Trainability
3. Methodology: The Fixed-Point "Halting" Insight
4. Experimental Triumphs
5. Critical Analysis & Conclusion