Papers
Topics
Authors
Recent
Search
2000 character limit reached

LASER: Low-Rank Activation SVD for Efficient Recursion

Published 19 Apr 2026 in cs.LG and stat.ML | (2604.17224v1)

Abstract: Recursive architectures such as Tiny Recursive Models (TRMs) perform implicit reasoning through iterative latent computation, yet the geometric structure of these reasoning trajectories remains poorly understood. We investigate the activation manifold of TRMs during recursive unrolling and find that activations occupy an effectively linear, low-dimensional subspace whose principal directions can be tracked dynamically with cheap power iterations. This suggests that weight-sharing concentrates iterative computation along a small number of dominant eigendirections, and we find that this concentration varies sharply across computational sites. We exploit this structure through LASER (Low-Rank Activation SVD for Efficient Recursion), a dynamic compression framework that maintains an evolving low-rank basis via matrix-free subspace tracking with a fidelity-triggered reset mechanism, achieving ${\sim}60\%$ activation memory savings with no statistically significant accuracy degradation. Our analysis raises questions about how recursive architectures allocate representational capacity during implicit reasoning, and whether this concentration can be exploited to improve the efficiency and stability of latent computation.

Summary

  • The paper introduces LASER, a method that compresses recursive activations using dynamic low-rank SVD to drastically reduce memory usage.
  • It employs power iteration for efficient basis tracking with adaptive fallback mechanisms to maintain projection fidelity during deep unrolling.
  • Empirical evaluations on maze pathfinding show up to 92.5% compression at certain layers and overall memory savings with no significant loss in accuracy.

LASER: Low-Rank Activation SVD for Efficient Recursion

Introduction and Problem Statement

Recursive neural architectures, as instantiated by Tiny Recursive Models (TRMs), enable deep parameter-efficient implicit reasoning by unrolling a single transformational block over many temporal steps. However, gradient-based training mandates retention of the entire sequence of activations, leading to an O(nBD)O(n B D) memory complexity in recursion depth nn, batch size BB, and activation dimensionality DD. This memory bottleneck fundamentally restricts recursion depth, limiting reasoning expressivity.

This paper rigorously analyzes the geometric structure of recursive forward activations. Empirical eigenvalue spectra and principal component analyses reveal that, during recursive unrolling, activations are predominantly confined to a low-dimensional, near-linear subspace. This constraint arises from recursive weight-tied operators, which focus activation trajectories along a small set of dominant eigendirections—a phenomenon that varies across model submodules.

Methodology: LASER Compression Framework

The LASER (Low-Rank Activation SVD for Efficient Recursion) method capitalizes on this latent structure by dynamically maintaining a low-rank basis for activations at each compression site (e.g., intermediate MLP activations, attention outputs) during recursive computation. At each step, activations X∈RB×DX \in \mathbb{R}^{B \times D} are projected onto the evolving basis Q∈RD×kQ \in \mathbb{R}^{D \times k}, retaining only the coefficients Z=XQZ = X Q and the shared basis—reducing the memory footprint from O(BD)O(B D) to O(Bk+Dk)O(B k + D k), with k≪Dk \ll D.

LASER uses power iteration for efficient, matrix-free basis tracking—particularly well-suited for deep recursive unrolling. To counteract subspace drift and maintain projection fidelity, LASER incorporates an adaptive fallback mechanism: once a fidelity threshold is violated, rank augmentation or an exact SVD-based basis reset can be triggered. This hybrid update rule ensures both computational efficiency and robustness to non-stationary activation distributions.

Empirical Evaluation

LASER was evaluated on a recursive pathfinding task (11x11 mazes) with TRMs employing 24 unroll steps. The primary memory bottleneck—3072-dimensional MLP intermediates—was compressed with up to 92.5% reduction at nn0, furnishing overall activation memory savings of approximately 60%, with no statistically significant performance degradation. For nn1 and nn2, final token-level accuracy and maze-solve rates matched or slightly exceeded baseline models; the activation memory required was reduced from 2.85 GB (baseline) to as low as 1.14 GB.

Per-site analysis illuminated marked asymmetry: high-dimensional MLP intermediates were highly compressible, while the 512-dimensional hidden state and attention output sites often required near-full rank—demonstrating site-specific redundancy patterns in recursive computation.

The compressed latent representations remained compatible with INT8 quantization, which, when applied after low-rank projection, introduced negligible distortion (relative MSE below 0.03%). This confirms that structural compression via LASER is orthogonal and additive with scalar quantization techniques such as ActNN.

Theoretical Guarantees

The authors provide formal justifications for gradient fidelity under low-rank activation projections. For TRMs with smooth nonlinearities and weight-tying, the Jacobian with respect to activation embeddings is Lipschitz-continuous. Hence, for the compressed activation nn3, the gradient error is bounded and the cosine similarity between the true and projected gradients remains high, provided that reconstruction error is small. This ensures that activations can be aggressively compressed during training without compromising optimization dynamics or inducing rank collapse.

Implications and Open Questions

These results have clear practical significance: for any recursively unrolled or weight-tied architecture, the memory cost of backpropagation can be reduced asymptotically in recursion depth, enabling deeper or larger implicit reasoning networks under fixed hardware budgets. Furthermore, LASER's matrix-free tracking and adaptive resets permit seamless integration with other memory reduction schemes, such as gradient checkpointing or additional quantization.

Theoretically, this work raises questions regarding the allocation and utilization of representational capacity in recursive architectures. The pronounced spectral decay at certain sites suggests that, despite large nominal capacity, effective computation occurs in a highly constrained corridor—potentially limiting the diversity or expressivity of implicit reasoning processes. Conversely, smooth subspace trajectories imply that recursive models may be less capable of diverse or chaotic computations, a claim that must be tested on tasks requiring heterogeneous strategies or with dynamic, non-stationary input distributions.

There are open questions regarding transferability to less structured domains (e.g., natural language or mathematical deduction), where input distributions, required reasoning depths, and subspace volatility may be much higher. Adaptive mechanisms in LASER (dynamic rank increase, subspace resets) are expressly designed to handle abrupt distributional shifts, but task-dependent behavior remains an important direction for empirical study.

Position Relative to Prior Work

Compared to prior methods:

  • LASER extends beyond scalar quantization (ActNN (Chen et al., 2021)) by structurally targeting feature correlations, and is orthogonal to quantization approaches.
  • It diverges from static projection bases (LANCE (Apolinario et al., 25 Sep 2025)), addressing the non-stationary nature of recursive activation manifolds.
  • Unlike LoRAct (Shi et al., 27 Sep 2025), which recalculates decompositions independently per layer, LASER amortizes basis tracking across recursion steps, leveraging shared weights for computational advantage.
  • GALE [D9Oq3c5iHn], though robust to subspace drift via random projections, does not exploit concentration arising from recursive structures; the tradeoff between structure-exploiting and structure-agnostic approaches remains an active area for benchmarking.

Limitations and Future Directions

The primary empirical limitation is the scope: only TRMs on maze pathfinding are considered. Extension to tasks involving combinatorial search, open-ended reasoning, and natural language, especially in regimes with rich, non-stationary activation distributions, is critical. In such settings, the effective rank of latent manifolds may increase, potentially reducing compressibility, requiring more frequent resets, and justifying structure-agnostic projections. Combining LASER with rematerialization or checkpointing could yield further memory reductions.

Monitoring the evolution of effective subspace rank during training and as a function of task complexity may also furnish diagnostic tools for understanding reasoning bottlenecks in implicit architectures. Empirical studies on architectures like LoopLM, Universal Transformers, and large-scale LLMs are natural next steps.

Conclusion

LASER demonstrates that recursive architectures’ activations are highly compressible due to intrinsic low-rank, linear, and smoothly evolving structure induced by shared weights. This enables efficient memory scaling, with strong theoretical guarantees on gradient fidelity and robust empirical performance on structured pathfinding. The framework establishes new directions for memory-efficient training and provides analytical tools for studying the representational geometry of implicit reasoning systems. Integration with broader classes of models and tasks will clarify the universality and limitations of the observed subspace concentration phenomena.

Reference: "LASER: Low-Rank Activation SVD for Efficient Recursion" (2604.17224)

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Collections

Sign up for free to add this paper to one or more collections.