Quantizing Recursive Reasoning Models

arXiv cs.LG Papers

Summary

This paper studies quantization of recursive reasoning models where weight-tied blocks are reused, finding that per-tensor 4-bit quantization causes catastrophic drift but per-block scaling (e.g., MXInt4) restores accuracy, with deeper architectures being more sensitive.

arXiv:2607.16237v1 Announce Type: new Abstract: Recursive reasoning models solve hard puzzles by applying compact, weight-tied blocks over many refinement steps. Because these blocks are reused many times, quantizing them creates a unique dynamical problem: the quantization error is incurred at every step. While 8-bit quantization (integer or float) preserves accuracy, moving to a per-tensor 4-bit format causes a systematic bias to accumulate. The ensuing drift catastrophically degrades exact-solution accuracy on Sudoku from 84.1% to 0.0% (only ~25% of cells correct). In this work, we show that this collapse is caused by activation-scaling granularity rather than bit-width or number format. Crucially, moving to per-block scaling completely restores the transition. To implement this, we apply MXInt4, a blockwise integer activation format, to recursive reasoning models. It is competitive with blockwise float formats on our tasks, while keeping integer elements and power-of-two block scales. Finally, recursion depth and reuse modulate quantization sensitivity, with the deepest architecture we test (the EqR equilibrium model) the most sensitive. Yet blockwise scaling overcomes this vulnerability, staying robust across these architectures and transferring to the open-ended ARC-AGI benchmark.
Original Article
View Cached Full Text

Cached at: 07/21/26, 06:47 AM

# Quantizing Recursive Reasoning Models
Source: [https://arxiv.org/html/2607.16237](https://arxiv.org/html/2607.16237)
Gamze İslamoğlu1Luca Benini1 1Integrated Systems Laboratory, ETH Zürich, Switzerland Corresponding Author:thoriri@iis\.ee\.ethz\.ch

###### Abstract

Recursive reasoning models solve hard puzzles by applying compact, weight\-tied blocks over many refinement steps\. Because these blocks are reused many times, quantizing them creates a unique dynamical problem: the quantization error is incurred at every step\. While 8\-bit quantization \(integer or float\) preserves accuracy, moving to a per\-tensor 4\-bit format causes a systematic bias to accumulate\. The ensuing drift catastrophically degrades exact\-solution accuracy on Sudoku from84\.1%84\.1\\%to0\.0%0\.0\\%\(only∼25%\{\\sim\}25\\%of cells correct\)\. In this work, we show that this collapse is caused by activation\-scaling*granularity*rather than bit\-width or number format\. Crucially, moving to per\-block scaling completely restores the transition\. To implement this, we apply MXInt4, a blockwise integer activation format, to recursive reasoning models\. It is competitive with blockwise float formats on our tasks, while keeping integer elements and power\-of\-two block scales\. Finally, recursion depth and reuse modulate quantization sensitivity, with the deepest architecture we test \(the EqR equilibrium model\) the most sensitive\. Yet blockwise scaling overcomes this vulnerability, staying robust across these architectures and transferring to the open\-ended ARC\-AGI benchmark\.

## 1Introduction

A recent line of research has shown that hard reasoning problems can be solved by organizing computation recursively with few parameters\. TheHierarchical Reasoning Model \(HRM\)\(Wanget al\.,[2025](https://arxiv.org/html/2607.16237#bib.bib2)\)and theTiny Recursive Model \(TRM\)\(Jolicoeur\-Martineau,[2025](https://arxiv.org/html/2607.16237#bib.bib1)\)reach competitive accuracy on Sudoku, maze solving, and ARC\-AGI by applying compact, weight\-tied transition functions over many refinement steps\. This line of work has already expanded to stochastic, autoregressive, hybrid, long\-horizon, and language\-model variants\(Sghaieret al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib4); Baeket al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib5); Raubaet al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib7); Wang and Reid,[2026](https://arxiv.org/html/2607.16237#bib.bib10); Yanget al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib16); Wanget al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib3)\)\. These models are attractive for low\-precision inference precisely because their parameter count is small\. Yet their behavior under quantization remains essentially unstudied: they are reported almost entirely in full precision, without an accompanying low\-precision accuracy or trajectory analysis\.

To understand quantization behavior, we view a recursive reasoner as a learned state\-space computation\. Given an inputxx, a shared transition operator repeatedly refines a latent reasoning state and an answer state\. Quantization fundamentally replaces this operator with a perturbed or noisy transition\.

In a standard feedforward model, a quantizer perturbs a finite sequence of*different*layers\. In a weight\-tied recursion, however, the*same*quantized transition is reused many times\. This makes the induced trajectory just as important as the one\-step error\. While the recursion might safely absorb an approximately zero\-mean perturbation, a systematic bias behaves differently\. It can push the trajectory, or the fixed point it converges to, in a coherent direction at every step, resulting in a strong accumulated drift\.

This paper studies quantization at the level of these reused transition operators\. We examine when a low\-bit transition stays faithful under repeated application, and how to build one that does\. We make three primary contributions:

##### 1\. Quantization as transition perturbation\.

We compare a full\-precision transition with its quantized counterpart applied to the same reasoning state \([Section3](https://arxiv.org/html/2607.16237#S3)\)\. Empirically, 8\-bit integer precision acts as a small perturbation\. The quantized trajectory contracts back toward the full\-precision path and accuracy is preserved\. Conversely, per\-tensor 4\-bit quantization induces severe trajectory drift, dropping Sudoku exact accuracy from84\.1%84\.1\\%to0\.0%0\.0\\%\. The displacement concentrates in the most\-reused recursive layers \(336×336\\timesper forward pass\) and scales directly with reuse depth\.

##### 2\. A blockwise integer transition rule\.

We show that activation scaling*granularity*is the dominant control variable \([Section4](https://arxiv.org/html/2607.16237#S4)\)\. Weight\-only 4\-bit quantization costs only a few points\. However, when quantizing activations at 4\-bit, both per\-tensor integer \(Int4,0\.0%0\.0\\%\) and float \(FP4,0\.6%0\.6\\%\) formats lose exact accuracy\. In contrast, per\-block scaling completely preserves the transition\. We apply this principle using MXInt4, a blockwise activation format with integer mantissas, which reaches80\.1%80\.1\\%\(Sudoku\) and84\.7%84\.7\\%\(Maze\), competitive with blockwise float formats on these tasks while keeping integer elements and power\-of\-two block scales\. Furthermore, tested outlier controls \(SmoothQuant, Hadamard rotation\) fail to provide this same post\-training stability\.

##### 3\. Recursion depth and reuse modulate quantizability\.

We demonstrate this across an axis of architectures \([Section5](https://arxiv.org/html/2607.16237#S5)\)\. The deepest,equilibrium recursion \(EqR\)is the most sensitive\. Per\-tensor Int4 prevents attractor convergence, and stochastic breadth cannot average the systematic error away\. Yet, our per\-block rule restores stability and preserves depth scaling \(0\.01%→82\.3%0\.01\\%\\\!\\to\\\!82\.3\\%\)\. At the stochastic end of the axis, injecting test\-time noise does not improve Int4 performance\. This confirms the error is systematic rather than averageable\. Finally, this same per\-block rule successfully transfers to the open\-ended ARC\-AGI benchmark\. We also show thatquantization\-aware training \(QAT\)offers a complementary weight\-side route towards even better accuracy \([Sections4\.6](https://arxiv.org/html/2607.16237#S4.SS6)and[4\.5](https://arxiv.org/html/2607.16237#S4.SS5)\)\.

![Refer to caption](https://arxiv.org/html/2607.16237v1/x1.png)Figure 1:Transition contraction versus drift \(Sudoku\)\.Quantized\-vs\-full\-precision divergence over the1616recursion steps\.\(a\)latent and\(b\)answer\-logit divergence \(logyy\-axis\): per\-tensor Int4 stays high in latent space and grows in logit space \(a coherent drift\), whereas 8\-bit*and*per\-block MXInt4 both*contract*back toward the full\-precision trajectory\.\(c\)final exact accuracy: per\-tensor 4\-bit removes every exact solution \(measured0\.0%0\.0\\%\), while Int8 \(≈\\approxFP\) and per\-block MXInt4 \(80\.1%80\.1\\%; the fix developed in[Section4](https://arxiv.org/html/2607.16237#S4)\) recover near\-FP accuracy\. Int8 is also per\-tensor, so the failure is specific to per\-tensor*4\-bit*, which per\-block MXInt4 then repairs\. The drift is milder on the shallower Maze recursion \(∼3\{\\sim\}3steps; per\-tensor Int477\.7%77\.7\\%vs\. FP84\.7%84\.7\\%at this coverage\)\.

## 2Background and related work

##### Recursive and looped reasoning models\.

A recent line of work solves hard puzzle and reasoning tasks using tiny, recursively applied networks\. For example, theHRM\(Wanget al\.,[2025](https://arxiv.org/html/2607.16237#bib.bib2)\)couples two weight\-tied recurrent modules running at different frequencies\. TheTRM\(Jolicoeur\-Martineau,[2025](https://arxiv.org/html/2607.16237#bib.bib1)\)simplifies this to a single two\-layer,∼7\{\\sim\}7M\-parameter block\. By recursing this block many times, it reaches45%45\\%on ARC\-AGI\-1 using a fraction of a percent of an LLM’s parameters\. These architectures share a lineage with weight\-tied recurrent transformers\(Dehghaniet al\.,[2019](https://arxiv.org/html/2607.16237#bib.bib11)\)and looped transformers\(Giannouet al\.,[2023](https://arxiv.org/html/2607.16237#bib.bib12); Xu and Sato,[2025](https://arxiv.org/html/2607.16237#bib.bib13)\)\. They control the number of shared\-block applications using adaptive\-compute mechanisms\(Graves,[2016](https://arxiv.org/html/2607.16237#bib.bib14)\)\. Conceptually, they also parallel deep equilibrium models\(Baiet al\.,[2019](https://arxiv.org/html/2607.16237#bib.bib15)\), which iterate a weight\-tied block to a fixed point\.

This architectural space is growing quickly\. Stochastic variants use test\-time noise or learned per\-step transitions to explore multiple solution trajectories\(Sghaieret al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib4); Baeket al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib5)\)\. Autoregressive variants morph standard transformers into shared\-block recursion\(Raubaet al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib7)\)\. Adjacent works incorporate curriculum learning, state\-space hybrids, and long\-horizon problem decomposition\(Qasim and Zhang,[2025](https://arxiv.org/html/2607.16237#bib.bib9); Wang and Reid,[2026](https://arxiv.org/html/2607.16237#bib.bib10); Yanget al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib16)\)\. Recently, HRM\-Text\(Wanget al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib3)\)even applied this recursive structure to efficient language\-model pretraining\. Despite this rapid expansion, the literature on these models consists exclusively of full\-precision studies\. Our work addresses the missing interaction between quantization and recursion structure\.

##### Quantizing weight\-tied and recurrent networks\.

The difficulty of quantizing reused weights is a well\-known effect: recurrent quantization is markedly more brittle than feedforward, with RNN binarization failing where low\-precision feedforward networks succeed\(Ottet al\.,[2016](https://arxiv.org/html/2607.16237#bib.bib17); Hubaraet al\.,[2018](https://arxiv.org/html/2607.16237#bib.bib21)\), motivating RNN\-specific quantizers and 4\-bit LSTM pipelines\(Heet al\.,[2016](https://arxiv.org/html/2607.16237#bib.bib18); Alomet al\.,[2018](https://arxiv.org/html/2607.16237#bib.bib19); Fasoliet al\.,[2021](https://arxiv.org/html/2607.16237#bib.bib20)\)\. A recurring theme is that error grows with the number of passes through the reused weights\. Precision Highway manages this accumulation\(Parket al\.,[2018](https://arxiv.org/html/2607.16237#bib.bib22)\)and accumulator\-aware quantization bounds the width needed to sum quantized terms safely\(Colbertet al\.,[2023b](https://arxiv.org/html/2607.16237#bib.bib23);[a](https://arxiv.org/html/2607.16237#bib.bib24)\)\. Theory on cross\-layer weight sharing\(Lanet al\.,[2020](https://arxiv.org/html/2607.16237#bib.bib25)\)and infinite\-depth equilibria\(Baiet al\.,[2019](https://arxiv.org/html/2607.16237#bib.bib15); Liet al\.,[2026a](https://arxiv.org/html/2607.16237#bib.bib26)\)grounds our claim, but the accumulation effect has never been measured on modern recursive reasoners\. We focus on this characterization: the contraction\-versus\-drift behavior of quantized trajectories and its dose\-response to reuse depth\.

##### Iterated models: diffusion quantization as the closest cousin\.

The closest analogue to our setting is quantized diffusion, where per\-step error compounds across an iterated shared\-weight denoiser andpost\-training quantization \(PTQ\)perturbs an iterated transition kernel rather than independent layers\(Shanget al\.,[2023](https://arxiv.org/html/2607.16237#bib.bib35); Liet al\.,[2023](https://arxiv.org/html/2607.16237#bib.bib36); Heet al\.,[2023](https://arxiv.org/html/2607.16237#bib.bib39)\)\. Our setting differs in two ways\. First, a diffusion step*conditions on the timestep*tt, enablingtt\-dependent quantization parameters\(Soet al\.,[2023](https://arxiv.org/html/2607.16237#bib.bib46); Huanget al\.,[2024](https://arxiv.org/html/2607.16237#bib.bib48)\), whereas a weight\-tied reasoner re\-applies one operator with step\-independent parameters\. Second, diffusion drifts on a*perceptual*manifold that tolerates small deviations, while a reasoner’s solution manifold is*all\-or\-nothing*: a single displaced symbol zeros out exact accuracy\. Our per\-tensor Int4 result is the logical\-space analogue of this manifold drift\. We expand the comparison, and the related exposure\-bias literature\(Ninget al\.,[2024](https://arxiv.org/html/2607.16237#bib.bib27); Aroraet al\.,[2022](https://arxiv.org/html/2607.16237#bib.bib31); Heet al\.,[2021](https://arxiv.org/html/2607.16237#bib.bib32)\), in[SectionA\.8](https://arxiv.org/html/2607.16237#A1.SS8)\.

##### Quantizing reasoning models, and low\-bitwidth number formats\.

Reasoning is highly sensitive to quantization\. Empirical studies and broadPTQbenchmarks show that 8\-bit reasoning LLMs are largely lossless\. However, lower bit\-widths become increasingly risky as task difficulty rises\(Liuet al\.,[2025a](https://arxiv.org/html/2607.16237#bib.bib56); Zhaoet al\.,[2025](https://arxiv.org/html/2607.16237#bib.bib61)\)\. Fine\-grained analyses of mathematical reasoning have localized these quantization\-induced failures\. Process\-level attribution demonstrates that a single early faulty step can cascade and ruin an entire chain of thought\(Liet al\.,[2025](https://arxiv.org/html/2607.16237#bib.bib57);[2026c](https://arxiv.org/html/2607.16237#bib.bib58)\)\. Recent work diagnoses and mitigates this usingQAT, lookahead losses, and targeted protection of critical weights\(Lvet al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib62); Zhanget al\.,[2026c](https://arxiv.org/html/2607.16237#bib.bib63); Choiet al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib64); Zhanget al\.,[2026b](https://arxiv.org/html/2607.16237#bib.bib59)\)\. Weight\-tied recursion represents the sharpest instance of this fragility\. The exact same reasoning block must remain faithful across thousands of reuses\.

On the format side, microscaling \(MX\) assigns a shared exponent to small blocks\(Rouhaniet al\.,[2023](https://arxiv.org/html/2607.16237#bib.bib65); Open Compute Project,[2023](https://arxiv.org/html/2607.16237#bib.bib66)\)\. The LLM consensus is that 4\-bit MXFP is lossy and an open challenge, with narrow dynamic range degrading accuracy\(Zhanget al\.,[2026a](https://arxiv.org/html/2607.16237#bib.bib68); Fasoliet al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib67)\)\. Closing this gap needs machinery such as overflow\-aware scaling, rotations, or metadata\-augmented formats\(Chhuganiet al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib69); Egiazarianet al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib70); Leeet al\.,[2025](https://arxiv.org/html/2607.16237#bib.bib71); Huet al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib73); Shaoet al\.,[2025](https://arxiv.org/html/2607.16237#bib.bib85); Liet al\.,[2026b](https://arxiv.org/html/2607.16237#bib.bib86); Menget al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib74)\), and training recipes can make MXFP4/NVFP4 near\-lossless via stochastic rounding or oscillation control\(Tsenget al\.,[2025](https://arxiv.org/html/2607.16237#bib.bib75); Castroet al\.,[2025](https://arxiv.org/html/2607.16237#bib.bib76); Chmielet al\.,[2025](https://arxiv.org/html/2607.16237#bib.bib77); NVIDIAet al\.,[2025](https://arxiv.org/html/2607.16237#bib.bib78); Chenet al\.,[2025b](https://arxiv.org/html/2607.16237#bib.bib79)\)\. Most relevant is that the integer\-vs\-float crossover is regime\-dependent: MXInt often exceeds MXFP at 8\-bit, while float usually leads at 4\-bit unless paired with the right rotations\(Chenet al\.,[2025a](https://arxiv.org/html/2607.16237#bib.bib81); Zhanget al\.,[2023](https://arxiv.org/html/2607.16237#bib.bib82); Ashkbooset al\.,[2024](https://arxiv.org/html/2607.16237#bib.bib83); Liuet al\.,[2025b](https://arxiv.org/html/2607.16237#bib.bib84)\)\. This motivates our comparison\. We find per\-block*integer*is competitive with per\-block float on tiny weight\-tied reasoners\. This is appealing given the deployment literature’s preference for integer\-friendly edge formats and block\-scaled accumulation\(Dhahri and Urban,[2025](https://arxiv.org/html/2607.16237#bib.bib89); Zhuoet al\.,[2022](https://arxiv.org/html/2607.16237#bib.bib88); Zhanget al\.,[2022](https://arxiv.org/html/2607.16237#bib.bib87)\)\. Our building blocks are standard tools: learned quantizer parameters\(Esseret al\.,[2020](https://arxiv.org/html/2607.16237#bib.bib93); Bhalgatet al\.,[2020](https://arxiv.org/html/2607.16237#bib.bib94); Choiet al\.,[2018](https://arxiv.org/html/2607.16237#bib.bib92)\), the straight\-through estimator\(Bengioet al\.,[2013](https://arxiv.org/html/2607.16237#bib.bib90)\), andPTQ/QATbaselines\(Frantaret al\.,[2023](https://arxiv.org/html/2607.16237#bib.bib103); Xiaoet al\.,[2023](https://arxiv.org/html/2607.16237#bib.bib105); Nagelet al\.,[2020](https://arxiv.org/html/2607.16237#bib.bib100); Liet al\.,[2021](https://arxiv.org/html/2607.16237#bib.bib101); Nagelet al\.,[2021](https://arxiv.org/html/2607.16237#bib.bib107)\)\. The closest combined work, BitSkip\(Bhuvaneswaran and Liu,[2025](https://arxiv.org/html/2607.16237#bib.bib117)\), composes quantization with early exit layer\-by\-layer, whereas we frame accumulation across the*recursion steps*of one shared block\.

## 3Quantization bias in reused transition operators

### 3\.1Recursive transitions and quantized trajectories

A weight\-tied recursive reasoner repeatedly applies a single learned operator to refine a latent state\. Quantization replaces this operator with a perturbed version at every reuse\. This raises a key question: does the quantized trajectory stay close to the full\-precision path, or does a small one\-step perturbation compound into a coherent trajectory\-level drift? We study theTRM\(Jolicoeur\-Martineau,[2025](https://arxiv.org/html/2607.16237#bib.bib1)\), which refines a latent statezzand answer embeddingyyby applying a single two\-layer,∼7\{\\sim\}7M\-parameter blockfθf\_\{\\theta\}\. This block is applied overTTdeep\-supervision steps consisting of several inner cycles\. In our Sudoku configuration the inner “LL\-level” layers are applied336336times per forward pass\. In contrast, the readout heads are applied only1616times\. We evaluate on*Sudoku\-Extreme*\(hard9×99\\times 9puzzles as length\-8181token sequences\) and*Maze\-Hard*\(30×3030\\times 30start\-to\-goal path\-finding\)\(Wanget al\.,[2025](https://arxiv.org/html/2607.16237#bib.bib2); Jolicoeur\-Martineau,[2025](https://arxiv.org/html/2607.16237#bib.bib1)\), scored by*exact accuracy*: an instance counts only if every cell or path\-step is correct \([SectionA\.13](https://arxiv.org/html/2607.16237#A1.SS13)\)\.

Writing the recursive statest=\(zt,yt\)s\_\{t\}=\(z\_\{t\},y\_\{t\}\)and the full\-precision recursionst\+1fp=Fθ​\(stfp,x\)s\_\{t\+1\}^\{\\mathrm\{fp\}\}=F\_\{\\theta\}\(s\_\{t\}^\{\\mathrm\{fp\}\},x\), the quantized recursion is

st\+1q=Fθ​\(stq,x\)\+ϵQ​\(stq,x\)\.s\_\{t\+1\}^\{q\}=F\_\{\\theta\}\(s\_\{t\}^\{q\},x\)\+\\epsilon\_\{Q\}\(s\_\{t\}^\{q\},x\)\.\(1\)Here,ϵQ\\epsilon\_\{Q\}is the induced input–output error of the*entire*quantized transition, including all internal weight and activation quantizers\. We do not assume this error is simply additive output\-level noise\. What matters is whether its mean component aligns across steps\. At each step we therefore track task accuracy alongside two trajectory divergences:

dtz=∥ztq−ztfp∥,dty=∥ytq−ytfp∥\.d^\{z\}\_\{t\}=\\lVert z^\{q\}\_\{t\}\-z^\{\\mathrm\{fp\}\}\_\{t\}\\rVert,\\qquad d^\{y\}\_\{t\}=\\lVert y^\{q\}\_\{t\}\-y^\{\\mathrm\{fp\}\}\_\{t\}\\rVert\.\(2\)The shape of these divergence curves distinguishes a stable perturbation \(where the divergence contracts\) from a biased one \(where displacement is reintroduced at every step\)\. Unless noted otherwise, reported numbers are final\-step point estimates\. The per\-tensorPTQrows \([Table1](https://arxiv.org/html/2607.16237#S4.T1)\) and theQAT/recursive\-aware quantization \(RAQ\)comparison \([Table2](https://arxiv.org/html/2607.16237#A1.T2)\) report mean±\\pmstd over three seeds\. Per\-block \(MX\) rows are deterministic given the checkpoint\. Per\-step trajectory diagnostics quantize only the recursive block’s linear layers, so their endpoints differ slightly from the broader\-coverage ladder rows of[Table1](https://arxiv.org/html/2607.16237#S4.T1)\([SectionA\.13](https://arxiv.org/html/2607.16237#A1.SS13)\)\.

### 3\.2Low\-bias perturbations contract; biased 4\-bit perturbations drift

[Figure1](https://arxiv.org/html/2607.16237#S1.F1)presents our central trajectory observation\. At 8\-bit precision \(Int8\), the quantized transition behaves as a low\-bias perturbation\. The divergence is largest at the first step but*shrinks*monotonically as the recursion proceeds\. Consequently, final accuracy matches full precision \(Sudoku Int8=84\.2%=84\.2\\%vs\. FP=84\.1%=84\.1\\%in[Figure1](https://arxiv.org/html/2607.16237#S1.F1); Maze Int8=83\.6%=83\.6\\%vs\. FP=84\.7%=84\.7\\%in[Table1](https://arxiv.org/html/2607.16237#S4.T1)\)\. Each application of the transition contracts the perturbed state back toward the full\-precision trajectory faster than the quantizer displaces it\.

At per\-tensor 4\-bit the sign of this effect completely flips\. The trajectory divergence now*grows*with depth\. On Sudoku, the answer\-logit divergence climbs from∼970\{\\sim\}970at the first step to∼1150\{\\sim\}1150by step 16\. The latent divergence saturates at a large value∼270\{\\sim\}270and fails to decay\. As a result, per\-tensor Int4PTQdrives exact accuracy from84\.1%84\.1\\%down to0\.0%0\.0\\%\. The same operator that damped 8\-bit error now compounds 4\-bit error: the quantized transition ceases to be a stable approximation and instead induces a coherent drift\. On the easier Maze task \(which converges in roughly three steps\), the effect is milder\. Int4 reaches77\.7%77\.7\\%versus84\.7%84\.7\\%at full precision, a∼7\{\\sim\}7\-point drop\. The fundamental asymmetry remains the same: 8\-bit divergence decays while per\-tensor 4\-bit does not\. Previewing[Section4](https://arxiv.org/html/2607.16237#S4), the per\-block 4\-bit fix \(MXInt4 in[Figure1](https://arxiv.org/html/2607.16237#S1.F1)\) contracts like 8\-bit, so scaling*granularity*rather than bit\-width sets the regime\.

This behavior aligns with earlier evidence that recurrent quantization is more brittle than feedforward quantization\(Ottet al\.,[2016](https://arxiv.org/html/2607.16237#bib.bib17); Hubaraet al\.,[2018](https://arxiv.org/html/2607.16237#bib.bib21)\)and that per\-step error can accumulate across iterated computation\(Parket al\.,[2018](https://arxiv.org/html/2607.16237#bib.bib22); Aroraet al\.,[2022](https://arxiv.org/html/2607.16237#bib.bib31)\)\. What is new is the sharp, controllable transition between contraction and drift on a model that reuses identical weights and quantization parameters at every step\.

### 3\.3Transition bias versus zero\-mean noise

Viewing quantization as a transition perturbation suggests a simple failure mechanism\. A quantizer whose grid is poorly matched to the activation distribution produces an expected rounding error𝔼​\[𝒬​\(a\)−a\]≠0\\mathbb\{E\}\[\\mathcal\{Q\}\(a\)\-a\]\\neq 0\. In a feedforward network these biases occur across different, independent layers and need not align\. In a weight\-tied recursion the same transition is reused, so the mean component ofϵQ\\epsilon\_\{Q\}is injected in a similar direction at every application and the resulting displacement scales with the number of reuses\. This behaves like a biased perturbation, which is fundamentally different from zero\-mean noise\.

We confirm the localization directly by calibrating an Int4 model and measuring the relative activation quantization error layer\-by\-layer \([Figure12](https://arxiv.org/html/2607.16237#A1.F12)\)\. The error*magnitude*is dominated by the recursive down\-projection layers \(relative error∼1\.1\{\\sim\}1\.1–1\.651\.65\), exactly the layers re\-applied hundreds of times per forward pass: the largest transition perturbations sit precisely where the recursion reuses them most\. While[Figure12](https://arxiv.org/html/2607.16237#A1.F12)shows magnitude, the perturbation’s*systematic*nature is established behaviorally in[Section5\.3](https://arxiv.org/html/2607.16237#S5.SS3)and measured directly in[Section4\.3](https://arxiv.org/html/2607.16237#S4.SS3): averaging independent trajectories and adding stochastic breadth fail to lift Int4 accuracy above zero, the signature of a coherent bias \(consistent with the nonzero signed per\-layer means found during calibration\)\.

This distinguishes our setting from its closest cousin, diffusion\-model quantization\. A diffusion denoising step*conditions on the timesteptt*\. This means accumulation can be damped withtt\-aware quantizers and calibration\(Heet al\.,[2023](https://arxiv.org/html/2607.16237#bib.bib39); Soet al\.,[2023](https://arxiv.org/html/2607.16237#bib.bib46); Huanget al\.,[2024](https://arxiv.org/html/2607.16237#bib.bib48)\)\. A weight\-tiedTRMhas no analogoustt: it re\-applies one operator with a single set of quantization parameters, which makes the accumulation more direct to analyze but larger in magnitude \(extended comparison in[SectionA\.9](https://arxiv.org/html/2607.16237#A1.SS9)\)\.

### 3\.4A dynamical\-systems perspective

The contraction\-versus\-drift dichotomy admits a lightweight, conditional model \(Proposition 1, a qualitative displacement scaffold rather than a tight bound, with the full statement in[SectionA\.11](https://arxiv.org/html/2607.16237#A1.SS11)\)\. We separate the per\-step perturbationϵQ\\epsilon\_\{Q\}of[Equation1](https://arxiv.org/html/2607.16237#S3.E1)into its magnitude \(bounded byε\\varepsilon\), its state variation \(a*smoothed*local sensitivityδ\\delta, since piecewise\-constant quantizers are not literally Lipschitz\), and its trajectory mean𝝁Q​\(x\)\\bm\{\\mu\}\_\{Q\}\(x\)\. Motivated by the contracting Int8 divergence \([Figure1](https://arxiv.org/html/2607.16237#S1.F1)\), we model the full\-precision transition as locally contractive with modulusL<1L<1\. Two conclusions follow:

- •Displacement:ifL\+δ<1L\+\\delta<1the perturbed transition still contracts, but to a fixed point displaced by at mostε/\(1−L\)\\varepsilon/\(1\-L\), small at 8\-bit and catastrophic at per\-tensor 4\-bit\.
- •Coherent accumulation:magnitude alone conflates a coherent bias with a same\-size zero\-mean fluctuation, but expectation separates them\. LinearizingFθF\_\{\\theta\}to its JacobianJJ\(∥J∥≤L\\lVert J\\rVert\\leq L\), a nonzero mean accumulates to𝔼​\[et\]→\(I−J\)−1​𝝁Q​\(x\)\\mathbb\{E\}\[e\_\{t\}\]\\to\(I\-J\)^\{\-1\}\\bm\{\\mu\}\_\{Q\}\(x\)\(magnitude≲∥𝝁Q​\(x\)∥/\(1−L\)\{\\lesssim\}\\lVert\\bm\{\\mu\}\_\{Q\}\(x\)\\rVert/\(1\-L\)\), whereas an independent zero\-mean perturbation converges to𝔼​\[et\]→0\\mathbb\{E\}\[e\_\{t\}\]\\to 0\.

This expectation\-level separation explains why injecting zero\-mean per\-step noise fails to rescue Int4 \([Section5\.3](https://arxiv.org/html/2607.16237#S5.SS3)\) and why per\-block scaling succeeds: by shrinking bothε\\varepsilonand∥𝝁Q​\(x\)∥\\lVert\\bm\{\\mu\}\_\{Q\}\(x\)\\rVertit restores the contraction regime \(MXInt4≈\\approxFP\)\. The account is conditional\. We do not measureδ\\delta, soL\+δ<1L\+\\delta<1is inferred from observed drift rather than verified \([SectionA\.11](https://arxiv.org/html/2607.16237#A1.SS11)\)\. Two controls support it \([SectionA\.5](https://arxiv.org/html/2607.16237#A1.SS5)\): a dose–response sweep where the FP–Int4 gap widens with reuse, and a matched\-capacity untied control \(7×7\\timesless reuse\) that roughly doubles Int4 cell\-accuracy \(54%54\\%vs\.25%25\\%\) yet leaves exact accuracy near\-zero \(1\.6%1\.6\\%\)\. Weight reuse amplifies the drift, but the root error is the activation\-quantization problem of[Section4](https://arxiv.org/html/2607.16237#S4)\.

The next section constructs a transition rule that explicitly reduces this bias\.

## 4Blockwise integer quantization of recursive transitions

[Section3](https://arxiv.org/html/2607.16237#S3)described quantization as a perturbation of a reused transition operator\. This section constructs a low\-bit transition that stays stable under reuse, guided by a simple principle: control activation\-quantization bias locally, at the scale where the recursive transition sees its activation distribution\. The resulting rule is a blockwise integer quantizer applied to the activations of the reused transition\.

### 4\.1Activation quantization dominates transition bias

We first decompose the 4\-bit error into a weight contribution and an activation contribution by quantizing each in isolation \([Figure6](https://arxiv.org/html/2607.16237#A1.F6)in the appendix\)\. Quantizing weights alone is comparatively benign: on Sudoku it moves the tied model from84\.1%84\.1\\%to78\.5%78\.5\\%and the untied model from69\.8%69\.8\\%to68\.9%68\.9\\%\. The transition changes qualitatively only when activations are quantized as well\. Full Int4 \(4\-bit w\+\+a\) collapses the tied model to0\.0%0\.0\\%and the untied model to1\.6%1\.6\\%, while 8\-bit remains stable throughout \(tied Int8=84\.1%=84\.1\\%\)\. Reuse also compounds the weight\-side error: with weight\-only Int4 the untied model keeps99%99\\%of FP accuracy versus93%93\\%for the tied model \([SectionA\.5](https://arxiv.org/html/2607.16237#A1.SS5)\)\. The dominant error term is the activation quantizer inside the reused transition, so a stable low\-bit transition must explicitly control activation scales\.

### 4\.2Granularity controls the transition kernel

The format ladder separates the number system from scaling granularity\. We sweep at fixed coverage, holding the embedding in FP \([Figure2](https://arxiv.org/html/2607.16237#S4.F2)\)\. At 4\-bit \(w\+\+a\), both per\-tensor formats lose accuracy completely \(Sudoku Int40\.0%0\.0\\%, FP40\.6%0\.6\\%\), while per\-block microscaling recovers most of the collapse: MXFP6 returns to full precision \(84\.9%≈84\.9\\%\\approxFP84\.1%84\.1\\%\) and MXFP4 recovers substantially to72\.7%72\.7\\%\. Weight\-only quantization stays close to full precision across every format, and all 8\-bit formats operate at parity\. The same split holds on the attention\-based Maze task \(per\-tensor FP40\.4%0\.4\\%, per\-block MXFP4/MXFP685\.1%85\.1\\%/85\.4%85\.4\\%\), so the effect extends well beyond Sudoku’s MLP recursion\. Maze adds one caveat: at*per\-tensor*4\-bit the integer format keeps73\.5%73\.5\\%while float falls to0\.4%0\.4\\%, opposite to the usual LLM ordering, where float typically leads at 4\-bit\. We therefore scope our claim narrowly\. The per\-tensor failures span integer and \(on Sudoku\) float formats, per\-block scaling brings*both*number systems near full precision, and per\-tensor float never exceeds per\-tensor integer in our data\. Granularity is the mechanism that moves accuracy from near\-zero to near\-FP, and the residual per\-tensor int\-vs\-float gap on Maze is orthogonal to this primary effect\.

![Refer to caption](https://arxiv.org/html/2607.16237v1/x2.png)Figure 2:Granularity, rather than integer vs\. float, controls stability\.4\-bit format ladder at matched linear\-layer coverage \(FP embedding\)\.\(a,b\)On both Sudoku \(MLP\) and Maze \(attention\), per\-tensor Int4/FP4 collapse \(hatched stubs near0%0\\%\), while per\-block MXFP4 \(float\) and MXInt4 \(integer\) recover near\-FP accuracy—the per\-tensor failures span*both*number systems\. The Maze exception, per\-tensor*integer*surviving \(73\.5%73\.5\\%\) while per\-tensor*float*collapses \(0\.4%0\.4\\%\), is orthogonal to this granularity effect\.\(c\)The same per\-block rule transfers to ARC\-AGI \(pass@2\): MXInt4 matches MXFP4 and full precision\. MXFP6 and the full ladder \(with 3\-seed error bars\) are in[Table1](https://arxiv.org/html/2607.16237#S4.T1)\.Mechanistically, per\-block scaling succeeds exactly as[Section3\.3](https://arxiv.org/html/2607.16237#S3.SS3)predicts: giving each block its own scale removes much of the systematic, nonzero\-mean transition perturbation, and switching from per\-tensor Int4 to per\-block MXFP4 flips the Sudoku latent divergence from growing \(270→274270\\\!\\to\\\!274\) to shrinking \(159→129159\\\!\\to\\\!129\)\. Granularity alone controls the contraction\-versus\-drift boundary of[Section3\.2](https://arxiv.org/html/2607.16237#S3.SS2), which also reconciles our results with the large\-LLM MXFP4 consensus \([SectionA\.2](https://arxiv.org/html/2607.16237#A1.SS2)\)\.

### 4\.3Ruling out non\-granularity explanations

If granularity is the operative axis, the alternatives should fail to recover per\-tensor Int4, and a sweep over granularity alone should isolate it\. We confirm both\.Calibration freshness\.Replacing the frozen, calibrated per\-tensor activation scale with one recomputed online at every recursion step \(per\-tensor*dynamic*Int4, no calibration\) does not recover the collapse: static and dynamic per\-tensor Int4 both reach0\.0%0\.0\\%on Sudoku, and dynamic also collapses on Maze \(to0\.0%0\.0\\%, below the gracefully degrading static scale of[Section3\.2](https://arxiv.org/html/2607.16237#S3.SS2)\), whereas per\-block MXInt4 recovers full\-precision accuracy on both \(80\.1%80\.1\\%/84\.7%84\.7\\%\) with a divergence that*decays*across recursion\. A step\-varying per\-tensor scale re\-injects an uncorrelated per\-step error that the fixed point cannot absorb\.Calibration size\.Increasing thePTQcalibration set10×10\\times\(200→2000200\\\!\\to\\\!2000samples\) leaves per\-tensor Int4 at0\.0%0\.0\\%on Sudoku\.Outlier corrections\.Sweeping SmoothQuant’s migration strength and adding a Hadamard rotation leaves it at≤0\.7%\\leq 0\.7\\%\(full sweep in[Table3](https://arxiv.org/html/2607.16237#A1.T3)\)\.Granularity ladder\.Holding 4\-bit, dynamic\-absmax coverage and per\-tensor weights fixed and sweeping only the activation group size, exact accuracy climbs monotonically:0\.0%0\.0\\%\(per\-tensor\)→4\.6%\\to 4\.6\\%\(per\-token\)→14\.5%\\to 14\.5\\%\(per\-group\-3232\)→15\.0%\\to 15\.0\\%\(per\-group\-1616\), with nothing else moving, and matched\-coverage MXInt4 lifts this∼15%\{\\sim\}15\\%ceiling to80\.1%80\.1\\%\.111The ladder holds weights per\-tensor and uses a float absmax scale, isolating the*activation*\-granularity axis, so its∼15%\{\\sim\}15\\%ceiling is by design \(full MXInt4 scales both weights and activations\)\.Clipping, freshness, calibration size, and outlier corrections are all ruled out, and spatial granularity is the operative axis\.

[Section3\.3](https://arxiv.org/html/2607.16237#S3.SS3)predicted*why*: a coherent bias re\-applied at every reuse\. We measure this directly by projecting each layer’s mean quantization error onto the dominant latent\-divergence direction and tracking that direction across recursion steps\. The direction is near\-constant across steps \(cross\-step cosine0\.990\.99on Sudoku,0\.970\.97on Maze\) and consistent across examples \(∥d¯∥/∥d∥¯≈0\.9\\lVert\\overline\{d\}\\rVert/\\overline\{\\lVert d\\rVert\}\\approx 0\.9\), so the per\-step errors accumulate coherently rather than averaging out\.

### 4\.4The algorithm: blockwise integer transition quantization

Per\-block float stabilizes the transition, but its per\-element floating\-point arithmetic is the most expensive part of a microscaling datapath, a real cost in the resource\-constrained edge/TinyML regime we target\(Dhahri and Urban,[2025](https://arxiv.org/html/2607.16237#bib.bib89); Zhuoet al\.,[2022](https://arxiv.org/html/2607.16237#bib.bib88)\)\. We therefore instantiate the same transition\-level principle with integer mantissas\. For each activation blockBBof size3232we choose a power\-of\-two shared scalesBs\_\{B\}, setqmax=2k−1−1q\_\{\\max\}=2^\{k\-1\}\-1, and quantize symmetrically to the integer range\[−qmax,qmax\]\[\-q\_\{\\max\},q\_\{\\max\}\], dequantizing before the next operation:

qB=clip\(⌊aBsB⌉,−qmax,qmax\),a^B=sBqB\.q\_\{B\}=\\operatorname\{clip\}\\\!\\left\(\\Big\\lfloor\\tfrac\{a\_\{B\}\}\{s\_\{B\}\}\\Big\\rceil,\\,\-q\_\{\\max\},\\,q\_\{\\max\}\\right\),\\qquad\\widehat\{a\}\_\{B\}=s\_\{B\}q\_\{B\}\.\(3\)The scale is local enough to match the activation distribution encountered by the recursive operator, while the mantissa remains integer\.

At matched coverage this MXInt quantizer, theOpen Compute Project \(OCP\)microscaling*integer*format\(Rouhaniet al\.,[2023](https://arxiv.org/html/2607.16237#bib.bib65); Open Compute Project,[2023](https://arxiv.org/html/2607.16237#bib.bib66)\), is competitive with per\-block float on both task families \([Figure2](https://arxiv.org/html/2607.16237#S4.F2)\)\. MXInt4 reaches80\.1%80\.1\\%\(Sudoku, MLP\) and84\.7%84\.7\\%\(Maze, attention\), versus MXFP4’s72\.7%72\.7\\%and85\.1%85\.1\\%, both near full precision\. Repeating the Sudoku per\-block rows across three calibration seeds, MXInt4 is bit\-exact at80\.1%80\.1\\%\(its block scale is the per\-block absmax computed online, so run\-to\-run variance is zero by construction\), while MXFP4 is72\.7%±0\.4%72\.7\\%\\\!\\pm\\\!0\.4\\%\. The7\.47\.4\-point Sudoku gap is∼17×\{\\sim\}17\\timesthe MXFP4 spread, so it is not a single\-seed artifact\. We still read the two as competitive on these tasks \(MXFP4 is marginally ahead on Maze\) rather than asserting a universal integer\-over\-float ordering \([Section3\.4](https://arxiv.org/html/2607.16237#S3.SS4)discusses the grid\-bias interpretation\)\.

The two 4\-bit per\-block formats have identical memory footprint \(block\-3232, one shared E8M0 scale,4\.254\.25bits/element\) and differ only in the compute datapath: MXInt4 uses integer MACs with power\-of\-two block scales, whereas MXFP4 needs per\-element float decoding, and both require per\-block scaled accumulation\(Rouhaniet al\.,[2023](https://arxiv.org/html/2607.16237#bib.bib65); Open Compute Project,[2023](https://arxiv.org/html/2607.16237#bib.bib66)\)\. We treat the integer datapath as motivation rather than a measured benefit \([Section6](https://arxiv.org/html/2607.16237#S6)\)\.

[Table1](https://arxiv.org/html/2607.16237#S4.T1)collects thePTQformat ladder at matched linear\-layer coverage, with 3\-seed error bars on the per\-tensor rows: 8\-bit operates at parity, per\-tensor 4\-bit fails in both number systems, and per\-block scaling \(integer or float\) preserves the transition on both task families\.

Table 1:PTQ format ladder\(final\-step exact accuracy; matched linear\-layer w\+\+a coverage, FP embedding\)\. Per\-tensor w\+\+a rows are mean±\\pmstd over33seeds \(a seed re\-draws only the 200\-sample activation\-calibration set\)\. Every std is≤0\.4\\leq 0\.4pp, so the 4\-bit collapse \(rows pinned near zero\) is not a seed artifact and no claim\-bearing ordering flips\. MXInt4 is deterministic given the checkpoint: its block scale is the per\-block absmax computed at inference with no calibration state, so it is bit\-exact across seeds\. MXFP4 is reported over33Sudoku seeds \(72\.7%±0\.472\.7\\%\\\!\\pm\\\!0\.4\)\. Its small spread is a calibration\-pass detail of our Brevitas MX path rather than a property of the format, and the7\.47\.4\-point MXInt4–MXFP4 Sudoku gap is∼17×\{\\sim\}17\\timesthat spread\. On Maze, per\-tensor Int4 \(73\.5%73\.5\\%\) survives while FP4 \(0\.4%0\.4\\%\) collapses\. Standard outlier controls do not recover per\-tensor Int4 on Sudoku \(SmoothQuant0\.7%0\.7\\%, Hadamard/QuaRot0\.0%0\.0\\%, single\-seed\)\. MXFP6 \(†\) is from the broader\-coverage ladder\. QAT/LSQ is in the appendix\.Quantizer \(PTQ\)Activation scalingInteger MACsSudoku \(MLP\)Maze \(attention\)Int8per\-tensor✓84\.0%±\.184\.0\\%\{\\scriptstyle\\,\\pm\.1\}83\.6%±\.383\.6\\%\{\\scriptstyle\\,\\pm\.3\}FP8 \(e4m3\)per\-tensor✗84\.1%±\.184\.1\\%\{\\scriptstyle\\,\\pm\.1\}84\.6%±\.284\.6\\%\{\\scriptstyle\\,\\pm\.2\}FP8 \(e5m2\)per\-tensor✗84\.0%±\.184\.0\\%\{\\scriptstyle\\,\\pm\.1\}84\.7%±\.284\.7\\%\{\\scriptstyle\\,\\pm\.2\}Int4per\-tensor✓0\.0%±\.010\.0\\%\{\\scriptstyle\\,\\pm\.01\}73\.5%±\.473\.5\\%\{\\scriptstyle\\,\\pm\.4\}FP4per\-tensor✗0\.6%±\.010\.6\\%\{\\scriptstyle\\,\\pm\.01\}0\.4%±\.30\.4\\%\{\\scriptstyle\\,\\pm\.3\}MXInt4per\-block, integer✓80\.1%84\.7%MXFP4per\-block, float✗72\.7%±\.472\.7\\%\{\\scriptstyle\\,\\pm\.4\}85\.1%MXFP6per\-block, float✗∼84\.9%†\{\\sim\}84\.9\\%^\{\\dagger\}∼85\.4%†\{\\sim\}85\.4\\%^\{\\dagger\}FP \(reference\)n/a✗84\.1%84\.7%
### 4\.5Quantization\-aware training: a secondary route

QATalone compensates for much of the per\-tensor activation loss: naive Int4QATimproves Sudoku from0\.0%0\.0\\%to71\.8%±0\.3%71\.8\\%\\\!\\pm\\\!0\.3\\%and Maze from73\.2%73\.2\\%to82\.2%±0\.7%82\.2\\%\\\!\\pm\\\!0\.7\\%, so the residual learned\-quantizer gain lies almost entirely in the*weights*\. We therefore fix ourRAQmethod to weight\-sidelearned step\-size quantization \(LSQ\)\(Esseret al\.,[2020](https://arxiv.org/html/2607.16237#bib.bib93)\), which adds\+9\.3\+9\.3points where naiveQATstruggles \(Sudoku,81\.1%±0\.681\.1\\%\\\!\\pm\\\!0\.6\) and is tied where it already succeeds \(Maze,81\.8%±1\.0%81\.8\\%\\\!\\pm\\\!1\.0\\%\)\. Controls confirm the gain comes from the learned weight step size rather than bias precision, and that the earlier attention instability was specific to activation\-LSQ\([SectionA\.6](https://arxiv.org/html/2607.16237#A1.SS6),[Table2](https://arxiv.org/html/2607.16237#A1.T2)\)\. Despite theseQATgains, per\-block MXInt4 remains the primary post\-training mechanism\. Per\-iteration normalization and cross\-iteration distillation do not help at convergence \([SectionA\.6](https://arxiv.org/html/2607.16237#A1.SS6)\)\.

### 4\.6Transfer to ARC\-AGI

The rule also transfers to ARC\-AGI, the open\-ended abstraction\-and\-reasoning benchmark this line of work is known for\(Jolicoeur\-Martineau,[2025](https://arxiv.org/html/2607.16237#bib.bib1)\): few\-shot grid\-transformation tasks with no fixed output size, scored by*pass@2*\(solved if either of two attempts matches the target,[SectionA\.13](https://arxiv.org/html/2607.16237#A1.SS13)\)\. We evaluate ARC\-AGI\-1 and its harder 2025 successor ARC\-AGI\-2, the strongest test that our account extends beyond structured Sudoku/Maze environments \(full table in[Footnote5](https://arxiv.org/html/2607.16237#footnote5),[SectionA\.12](https://arxiv.org/html/2607.16237#A1.SS12), with the cross\-architecture summary in panel \(c\) of[Figure2](https://arxiv.org/html/2607.16237#S4.F2)\)\. Per\-tensor Int4\-PTQgives0\.0%0\.0\\%on both datasets, while two distinct routes return to full\-precision\-level pass@2: per\-block scaling at post\-training \(MXInt4, no retraining,44\.0%44\.0\\%/6\.25%≈6\.25\\%\\ \\approx\\FP\) and naive Int4\-QAT\(45\.9%45\.9\\%/6\.25%≈6\.25\\%\\ \\approx\\FP\)\. The same granularity pattern holds\. Weight\-LSQis neutral here \(it helps the MLP recursion but not attention,[Section4\.5](https://arxiv.org/html/2607.16237#S4.SS5)\)\. ARC\-AGI\-2 is the most quantization\-sensitive, with Int8 losing about half its pass@2 score\. Because all ARC numbers are single\-seed and one ARC\-AGI\-2 task is worth6\.25%6\.25\\%, we read them strictly as point estimates rather than a calibrated ordering\.

Ultimately, stable low\-bit recursive inference requires quantizing the reused transition locally enough that activation\-scale mismatch does not become a coherent transition bias\. Blockwise*integer*scaling \(MXInt4\) meets this requirement while keeping integer elements and a power\-of\-two block scale\.

## 5Recursion structure as transition robustness

Previous sections characterizedTRM, a finite\-step deterministic transition system whose 4\-bit degradation is fundamentally an activation\-scaling\-granularity problem\. We now make a broader architectural claim:*a recursive reasoner’s quantizability is shaped by its recursion structure*, with depth and reuse modulating its sensitivity\. We test this across an axis of architectures\. The deepest point on the axis \(EqR\) is the most sensitive, stochasticity alone does not remove the systematic bias, and per\-block activation scaling remains the effective intervention throughout\.

![Refer to caption](https://arxiv.org/html/2607.16237v1/x3.png)Figure 3:EqR mechanism: per\-block scaling preserves depth use*and*keeps the trajectory in the FP basin\.\(a\)EqR exact\-accuracy vs\. inference depth: FP and Int4 weight\-only scale with depth, per\-tensor Int4*activations*remain near∼0\{\\sim\}0, and per\-block activations restore both accuracy and depth\-scaling \(89\.1%89\.1\\%atD​64D64\)\.\(b\)FP\-centered latent basin: mean trajectory over1212Sudoku\-Extreme examples projected onto the leading two PCA directions ofzt−zFP∗z\_\{t\}\-z^\{\*\}\_\{\\mathrm\{FP\}\}\(faint lines: per\-example paths\); the surface is an interpolated per\-step residual \(low==basin\)\. FP, Int8, and per\-block MXInt4 converge into the basin around the FP attractor \(⋆\\star\), while per\-tensor Int4 terminates in a high\-residual region\. Squares/circles/diamonds mark first/intermediate/final states\. The 2\-D projection is illustrative \(PC1\+\+PC2≈30%\{\\approx\}30\\%of variance\); contraction vs\. drift is quantified by the per\-step residual and accuracy rather than the projection\.### 5\.1An axis of recursive transition systems

We consider three points on this axis\. At the deterministic extreme,EqRsiterate a transition to a fixed\-point attractor, scaling test\-time compute through both*depth*and*breadth*\(Baiet al\.,[2019](https://arxiv.org/html/2607.16237#bib.bib15); Huanget al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib6)\)\. In the middle sits the finite\-stepTRMstudied above\. At the stochastic extreme, test\-time noise in the style of theProbabilistic Tiny Recursive Model \(PTRM\)or learned per\-step transitions \(GRAM\) explore multiple trajectories\(Sghaieret al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib4); Baeket al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib5)\)\. If bit\-width were the only factor, all three would behave similarly\. Instead, the architecture’s required invariant \(a fixed point, a finite refinement path, or a distribution over paths\) dictates how a systematic bias propagates\.

### 5\.2Equilibrium recursion is the most sensitive point on the axis

EqRpushes recursion depth to the extreme: its released Sudoku\-Extreme checkpoint unrolls roughly288288layer applications at our base depth \(far more at higher depths\) and reads its answer from a converged attractor\(Huanget al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib6)\), making it the sharpest test of our accumulation hypothesis: a systematic per\-step bias here can displace the entire attractor\.222We use a minimalbf16\-consistent fake\-quantizer that is FP\-neutral \(verified FP86\.4%86\.4\\%\)\. An off\-the\-shelf harness was not, over∼288\{\\sim\}288applications\.EqRnumbers are for the one released Sudoku\-Extreme checkpoint, multi\-seed atD​32D32and single\-seed at other depths \([SectionA\.13](https://arxiv.org/html/2607.16237#A1.SS13)\)\.

In full precisionEqRscales with depth: exact accuracy rises from86\.4%86\.4\\%atD​16D16to93\.0%93\.0\\%atD​64D64as the final\-step residual contracts \(27\.5→16\.227\.5\\\!\\to\\\!16\.2,[Figure3](https://arxiv.org/html/2607.16237#S5.F3)\)\. Per\-tensor Int4*activation*quantization destroys this: accuracy drops to effectively zero at every depth \(0\.01%0\.01\\%atD​16D16,0\.02%±0\.0020\.02\\%\\\!\\pm\\\!0\.002across three seeds atD​32D32against FP90\.4%90\.4\\%\) and the equilibrium fails to converge, with the residual stuck near110110versus∼16\{\\sim\}16even with a favorable dynamic scale, a massive displacement of the full\-precision attractor \([Figure3](https://arxiv.org/html/2607.16237#S5.F3)b\)\.

As withTRM, activation\-side sensitivity dominates: per\-channel weight\-only Int4 loses little and keeps depth scaling \(84\.1%→90\.6%84\.1\\%\\\!\\to\\\!90\.6\\%acrossD​16D16–D​64D64\), and the per\-tensor weight\-only drop to5\.1%5\.1\\%is a coarseness artifact\.EqR’s stochastic*breadth*also fails to average the activation error away\. Aggregation improves full precision \(majority vote91\.4%91\.4\\%, any\-correct93\.2%93\.2\\%\) but Int4 stays at∼0%\{\\sim\}0\\%: every trajectory settles into the same shifted basin and agrees on wrong answers, confirming a coherent, systematic bias \([SectionA\.4](https://arxiv.org/html/2607.16237#A1.SS4)\)\.

Finally, our blockwise rule generalizes to this extreme \([SectionA\.4](https://arxiv.org/html/2607.16237#A1.SS4)\): per\-group\-1616scaling lifts full\-Int4 exact accuracy from0\.01%0\.01\\%to82\.3%82\.3\\%atD​16D16\(per\-token60\.6%60\.6\\%, per\-group\-323282\.2%82\.2\\%, within∼4\{\\sim\}4points of FP86\.4%86\.4\\%\) and restores depth scaling \(86\.3%86\.3\\%atD​32D32,89\.1%89\.1\\%atD​64D64\)\. Per\-block scaling preserves even the most sensitive model on the axis\.

### 5\.3Stochasticity does not remove the systematic bias

At the stochastic end of the axis, test\-time stochasticity fails to rescue per\-tensor Int4TRM: we injectPTRM\-style Gaussian noise into the deterministicTRMcheckpoint, rather than a trained stochastic model, and sweepK∈\{1,4,16\}K\\in\\\{1,4,16\\\}trajectories and all noise scales\. Both averaging and halt\-head selection keep exact accuracy at0\.0%0\.0\\%, while the same selector lifts full precision to95\.0%95\.0\\%\([SectionA\.4](https://arxiv.org/html/2607.16237#A1.SS4),[Figure8](https://arxiv.org/html/2607.16237#A1.F8)\)\. The same biased transition drives every trajectory, so aggregation cannot recover an unbiased answer\. Whether*trained\-in*stochasticity \(e\.g\. GRAM’s learned per\-step transitions\(Baeket al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib5)\)\) confers robustness remains open \([SectionA\.4](https://arxiv.org/html/2607.16237#A1.SS4)\)\.

Across the axis, severity tracks effective recursion depth: the deepest model \(EqR,∼288\{\\sim\}288applications\) is the most sensitive, and no standard defense \(stochastic breadth, averaging, halt\-head selection, or injected per\-step noise\) mitigates the drift\. Per\-block activation scaling is the one intervention that works everywhere\.

## 6Discussion and limitations

##### A transition\-level rule, and what governs it\.

We quantize recursive reasoners at the level of their reused transition operator, using local blockwise activation scales with integer mantissas and power\-of\-two block scales\. Per\-tensor 4\-bit fails because its activation grid induces a biased perturbation re\-applied throughout the trajectory, which blockwise scaling reduces locally\. More broadly, quantizability depends on more than bit\-width and number format\. It also depends on the recursive structure that re\-applies the transition: how often the operator is reused, whether the answer is read from a finite trajectory or a fixed point, and whether stochastic transitions merely carry variance or absorb systematic bias\.

##### Hardware \(motivation only\)\.

MXInt4 and MXFP4 share a4\.254\.25\-bit/element footprint and differ only in the per\-element datapath: integer MACs with power\-of\-two \(shift\) scales versus per\-element float decode\. Both still need per\-block scaled accumulation, which the integer accelerators that dominate edge silicon \(e\.g\. Arm Ethos\-U class microNPUs\) do not natively provide\. Given that support, the integer variant stays all\-integer\. We frame this as motivation, not a deployment result: a measured kernel and block\-aware accumulation support are future work\.

##### Limitations\.

Our evaluations coverTRMon Sudoku\-Extreme and Maze\-Hard, extended toEqR,PTRM,QAT/LSQ, and ARC\-AGI \(Sections[4\.5](https://arxiv.org/html/2607.16237#S4.SS5),[4\.6](https://arxiv.org/html/2607.16237#S4.SS6), and[5](https://arxiv.org/html/2607.16237#S5)\)\. Per\-tensorPTQandQAT/RAQreport mean±\\pmstd over three seeds, and other measurements are single\-seed or deterministic\. HRM\-scale generality and trained\-in stochasticity \(GRAM\) remain future work\. Our microscaling result is regime\-specific, consistent with the large\-LLM MXFP4 consensus\(Zhanget al\.,[2026a](https://arxiv.org/html/2607.16237#bib.bib68); Fasoliet al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib67)\)\. Finally, Proposition 1 is a qualitative scaffold rather than a tight bound or full fixed\-point perturbation theory\.

#### Reproducibility statement

The completed experiments are evaluated on the public Sudoku\-Extreme and Maze\-Hard benchmarks using models trained with the released TRM codebase and the quantization code described in[Section4](https://arxiv.org/html/2607.16237#S4), and on ARC\-AGI\-1/2\. Exact configurations, seeds, and per\-step logging scripts are provided in the supplementary material\.

## References

- M\. Z\. Alom, A\. T\. Moody, N\. Maruyama, B\. C\. Van Essen, and T\. M\. Taha \(2018\)Effective quantization approaches for recurrent neural networks\.External Links:1802\.02615,[Link](https://arxiv.org/abs/1802.02615)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px2.p1.1)\.
- K\. Arora, L\. El Asri, H\. Bahuleyan, and J\. C\. K\. Cheung \(2022\)Why exposure bias matters: an imitation learning perspective of error accumulation in language generation\.InFindings of the Association for Computational Linguistics \(ACL\),Cited by:[§A\.8](https://arxiv.org/html/2607.16237#A1.SS8.p1.1),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px3.p1.2),[§3\.2](https://arxiv.org/html/2607.16237#S3.SS2.p3.1)\.
- S\. Ashkboos, A\. Mohtashami, M\. L\. Croci, B\. Li, P\. Cameron, M\. Jaggi, D\. Alistarh, T\. Hoefler, and J\. Hensman \(2024\)QuaRot: outlier\-free 4\-bit inference in rotated llms\.InAdvances in Neural Information Processing Systems \(NeurIPS\),Note:arXiv:2404\.00456Cited by:[§A\.7](https://arxiv.org/html/2607.16237#A1.SS7.p1.7),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- J\. Baek, M\. Jo, M\. Kim, M\. Ren, Y\. Bengio, and S\. Ahn \(2026\)Generative recursive reasoning\.External Links:2605\.19376,[Link](https://arxiv.org/abs/2605.19376)Cited by:[§A\.4](https://arxiv.org/html/2607.16237#A1.SS4.SSS0.Px2.p1.1),[§1](https://arxiv.org/html/2607.16237#S1.p1.1),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px1.p2.1),[§5\.1](https://arxiv.org/html/2607.16237#S5.SS1.p1.1),[§5\.3](https://arxiv.org/html/2607.16237#S5.SS3.p1.3)\.
- S\. Bai, J\. Z\. Kolter, and V\. Koltun \(2019\)Deep equilibrium models\.InAdvances in Neural Information Processing Systems \(NeurIPS\),Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px1.p1.2),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px2.p1.1),[§5\.1](https://arxiv.org/html/2607.16237#S5.SS1.p1.1)\.
- S\. Bengio, O\. Vinyals, N\. Jaitly, and N\. Shazeer \(2015\)Scheduled sampling for sequence prediction with recurrent neural networks\.InAdvances in Neural Information Processing Systems \(NeurIPS\),Cited by:[§A\.8](https://arxiv.org/html/2607.16237#A1.SS8.p1.1)\.
- Y\. Bengio, N\. Léonard, and A\. Courville \(2013\)Estimating or propagating gradients through stochastic neurons for conditional computation\.External Links:1308\.3432,[Link](https://arxiv.org/abs/1308.3432)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- Y\. Bhalgat, J\. Lee, M\. Nagel, T\. Blankevoort, and N\. Kwak \(2020\)LSQ\+: improving low\-bit quantization through learnable offsets and better initialization\.InIEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops \(CVPRW\),Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- R\. Bhuvaneswaran and H\. Liu \(2025\)BitSkip: an empirical analysis of quantization and early exit composition in transformers\.External Links:2510\.23766,[Link](https://arxiv.org/abs/2510.23766)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- R\. L\. Castro, A\. Panferov, S\. Tabesh, O\. Sieberling, J\. Chen, M\. Nikdan, S\. Ashkboos, and D\. Alistarh \(2025\)Quartet: native FP4 training can be optimal for large language models\.InAdvances in Neural Information Processing Systems \(NeurIPS\),Note:arXiv:2505\.14669Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- M\. Chen, M\. Wu, H\. Jin, Z\. Yuan, J\. Liu, C\. Zhang, Y\. Li, J\. Huang, J\. Ma, Z\. Xue, Z\. Liu, X\. Bin, and P\. Luo \(2025a\)INT v\.s\. FP: a comprehensive study of fine\-grained low\-bit quantization formats\.External Links:2510\.25602,[Link](https://arxiv.org/abs/2510.25602)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- Y\. Chen, Z\. Huang, and J\. Chen \(2024\)StepbaQ: stepping backward as correction for quantized diffusion models\.InAdvances in Neural Information Processing Systems,A\. Globerson, L\. Mackey, D\. Belgrave, A\. Fan, U\. Paquet, J\. Tomczak, and C\. Zhang \(Eds\.\),Vol\.37,pp\. 54054–54078\.External Links:[Document](https://dx.doi.org/10.52202/079017-1712),[Link](https://proceedings.neurips.cc/paper_files/paper/2024/file/615675cc6e94ddb1a783904fb178b5f6-Paper-Conference.pdf)Cited by:[§A\.9](https://arxiv.org/html/2607.16237#A1.SS9.p3.1)\.
- Y\. Chen, H\. Xi, J\. Zhu, and J\. Chen \(2025b\)Oscillation\-reduced MXFP4 training for vision transformers\.InProceedings of the 42nd International Conference on Machine Learning,Proceedings of Machine Learning Research, Vol\.267,pp\. 9400–9414\.Note:arXiv:2502\.20853External Links:[Link](https://proceedings.mlr.press/v267/chen25bu.html)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- J\. Chhugani, G\. Jeong, B\. Su, Y\. Pan, H\. Yang, A\. Ankit, J\. Yu, S\. Deng, Y\. Chen, N\. Satish, and C\. Kim \(2026\)Unveiling the potential of quantization with MXFP4: strategies for quantization error reduction\.External Links:2603\.08713,[Link](https://arxiv.org/abs/2603.08713)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- B\. Chmiel, M\. Fishman, R\. Banner, and D\. Soudry \(2025\)FP4 all the way: fully quantized training of llms\.InAdvances in Neural Information Processing Systems \(NeurIPS\),Note:arXiv:2505\.19115Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- E\. Choi, S\. Song, and S\. Yoo \(2026\)LAQuant: a simple overhead\-free large reasoning model quantization by layer\-wise lookahead loss\.External Links:2605\.08755,[Link](https://arxiv.org/abs/2605.08755)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p1.1)\.
- J\. Choi, Z\. Wang, S\. Venkataramani, P\. I\. Chuang, V\. Srinivasan, and K\. Gopalakrishnan \(2018\)PACT: parameterized clipping activation for quantized neural networks\.External Links:1805\.06085,[Link](https://arxiv.org/abs/1805.06085)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- H\. Chu, W\. Wu, C\. Zang, and K\. Yuan \(2024\)QNCD: quantization noise correction for diffusion models\.InACM International Conference on Multimedia \(ACM MM\),Cited by:[§A\.9](https://arxiv.org/html/2607.16237#A1.SS9.p2.1)\.
- I\. Colbert, A\. Pappalardo, and J\. Petri\-Koenig \(2023a\)A2Q: accumulator\-aware quantization with guaranteed overflow avoidance\.InIEEE/CVF International Conference on Computer Vision \(ICCV\),Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px2.p1.1)\.
- I\. Colbert, A\. Pappalardo, and J\. Petri\-Koenig \(2023b\)Quantized neural networks for low\-precision accumulation with guaranteed overflow avoidance\.External Links:2301\.13376,[Link](https://arxiv.org/abs/2301.13376)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px2.p1.1)\.
- M\. Dehghani, S\. Gouws, O\. Vinyals, J\. Uszkoreit, and Ł\. Kaiser \(2019\)Universal transformers\.InInternational Conference on Learning Representations \(ICLR\),Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px1.p1.2)\.
- R\. Dhahri and S\. Urban \(2025\)Quant\-trim in practice: improved cross\-platform low\-bit deployment on edge NPUs\.External Links:2511\.15300,[Link](https://arxiv.org/abs/2511.15300)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1),[§4\.4](https://arxiv.org/html/2607.16237#S4.SS4.p1.5)\.
- V\. Egiazarian, R\. L\. Castro, D\. Kuznedelev, A\. Panferov, E\. Kurtic, S\. Pandit, A\. Noll Marques, M\. Kurtz, S\. Ashkboos, T\. Hoefler, and D\. Alistarh \(2026\)Bridging the gap between promise and performance for microscaling FP4 quantization\.InInternational Conference on Learning Representations \(ICLR\),Note:arXiv:2509\.23202External Links:[Link](https://openreview.net/forum?id=zCBGe9AqJZ)Cited by:[§A\.2](https://arxiv.org/html/2607.16237#A1.SS2.p2.1),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- S\. K\. Esser, J\. L\. McKinstry, D\. Bablani, R\. Appuswamy, and D\. S\. Modha \(2020\)Learned step size quantization\.InInternational Conference on Learning Representations \(ICLR\),Cited by:[§A\.6](https://arxiv.org/html/2607.16237#A1.SS6.p2.4),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1),[§4\.5](https://arxiv.org/html/2607.16237#S4.SS5.p1.7)\.
- A\. Fasoli, C\. Chen, M\. Serrano, X\. Sun, N\. Wang, S\. Venkataramani, G\. Saon, X\. Cui, B\. Kingsbury, W\. Zhang, Z\. Tüske, and K\. Gopalakrishnan \(2021\)4\-bit quantization of LSTM\-based speech recognition models\.InInterspeech,Note:arXiv:2108\.12074External Links:[Link](https://arxiv.org/abs/2108.12074)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px2.p1.1)\.
- A\. Fasoli, M\. Kar, C\. Liu, S\. Venkataramani, V\. Srinivasan, L\. Chang, and N\. Wang \(2026\)Is finer better? the limits of microscaling formats in large language models\.InInternational Conference on Learning Representations \(ICLR\),Note:arXiv:2601\.19026Cited by:[§A\.2](https://arxiv.org/html/2607.16237#A1.SS2.p2.1),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1),[§6](https://arxiv.org/html/2607.16237#S6.SS0.SSS0.Px3.p1.1)\.
- E\. Frantar, S\. Ashkboos, T\. Hoefler, and D\. Alistarh \(2023\)GPTQ: accurate post\-training quantization for generative pre\-trained transformers\.InInternational Conference on Learning Representations \(ICLR\),Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- N\. Frumkin and D\. Marculescu \(2025\)Q\-Sched: pushing the boundaries of few\-step diffusion models with quantization\-aware scheduling\.External Links:2509\.01624,[Link](https://arxiv.org/abs/2509.01624)Cited by:[§A\.9](https://arxiv.org/html/2607.16237#A1.SS9.p3.1)\.
- A\. Giannou, S\. Rajput, J\. Sohn, K\. Lee, J\. D\. Lee, and D\. Papailiopoulos \(2023\)Looped transformers as programmable computers\.InProceedings of the 40th International Conference on Machine Learning,A\. Krause, E\. Brunskill, K\. Cho, B\. Engelhardt, S\. Sabato, and J\. Scarlett \(Eds\.\),Proceedings of Machine Learning Research, Vol\.202,pp\. 11398–11442\.External Links:[Link](https://proceedings.mlr.press/v202/giannou23a.html)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px1.p1.2)\.
- A\. Graves \(2016\)Adaptive computation time for recurrent neural networks\.External Links:1603\.08983,[Link](https://arxiv.org/abs/1603.08983)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px1.p1.2)\.
- Q\. He, H\. Wen, S\. Zhou, Y\. Wu, C\. Yao, X\. Zhou, and Y\. Zou \(2016\)Effective quantization methods for recurrent neural networks\.External Links:1611\.10176,[Link](https://arxiv.org/abs/1611.10176)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px2.p1.1)\.
- T\. He, J\. Zhang, Z\. Zhou, and J\. Glass \(2021\)Exposure bias versus self\-recovery: are distortions really incremental for autoregressive text generation?\.InProceedings of the 2021 Conference on Empirical Methods in Natural Language Processing,pp\. 5087–5102\.External Links:[Link](https://aclanthology.org/2021.emnlp-main.415/),[Document](https://dx.doi.org/10.18653/v1/2021.emnlp-main.415),1905\.10617Cited by:[§A\.8](https://arxiv.org/html/2607.16237#A1.SS8.p1.1),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px3.p1.2)\.
- Y\. He, L\. Liu, J\. Liu, W\. Wu, H\. Zhou, and B\. Zhuang \(2023\)PTQD: accurate post\-training quantization for diffusion models\.InAdvances in Neural Information Processing Systems \(NeurIPS\),Cited by:[§A\.9](https://arxiv.org/html/2607.16237#A1.SS9.p2.1),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px3.p1.2),[§3\.3](https://arxiv.org/html/2607.16237#S3.SS3.p3.3)\.
- W\. Hu, Z\. Zhang, H\. Zhang, C\. Zhang, C\. Guo, Y\. Feng, T\. Hu, G\. Li, G\. Hu, J\. Wang, and J\. Leng \(2026\)M2XFP: a metadata\-augmented microscaling data format for efficient low\-bit quantization\.InProceedings of the 31st ACM International Conference on Architectural Support for Programming Languages and Operating Systems, Volume 2,ASPLOS ’26,New York, NY, USA,pp\. 1151–1167\.External Links:ISBN 9798400723599,[Link](https://doi.org/10.1145/3779212.3790185),[Document](https://dx.doi.org/10.1145/3779212.3790185)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- B\. Huang, Z\. Geng, and Z\. Kolter \(2026\)Equilibrium reasoners: learning attractors enables scalable reasoning\.Note:ICML 2026External Links:2605\.21488,[Link](https://arxiv.org/abs/2605.21488)Cited by:[§A\.13](https://arxiv.org/html/2607.16237#A1.SS13.SSS0.Px1.p3.4),[§5\.1](https://arxiv.org/html/2607.16237#S5.SS1.p1.1),[§5\.2](https://arxiv.org/html/2607.16237#S5.SS2.p1.1)\.
- Y\. Huang, R\. Gong, J\. Liu, T\. Chen, and X\. Liu \(2024\)TFMQ\-DM: temporal feature maintenance quantization for diffusion models\.InIEEE/CVF Conference on Computer Vision and Pattern Recognition \(CVPR\),Cited by:[§A\.9](https://arxiv.org/html/2607.16237#A1.SS9.p2.1),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px3.p1.2),[§3\.3](https://arxiv.org/html/2607.16237#S3.SS3.p3.3)\.
- I\. Hubara, M\. Courbariaux, D\. Soudry, R\. El\-Yaniv, and Y\. Bengio \(2018\)Quantized neural networks: training neural networks with low precision weights and activations\.Journal of Machine Learning Research18\.Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px2.p1.1),[§3\.2](https://arxiv.org/html/2607.16237#S3.SS2.p3.1)\.
- A\. Jolicoeur\-Martineau \(2025\)Less is more: recursive reasoning with tiny networks\.Note:Samsung SAIL MontréalExternal Links:2510\.04871,[Link](https://arxiv.org/abs/2510.04871)Cited by:[§A\.13](https://arxiv.org/html/2607.16237#A1.SS13.SSS0.Px1.p1.8),[§1](https://arxiv.org/html/2607.16237#S1.p1.1),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px1.p1.2),[§3\.1](https://arxiv.org/html/2607.16237#S3.SS1.p1.11),[§4\.6](https://arxiv.org/html/2607.16237#S4.SS6.p1.6)\.
- Z\. Lan, M\. Chen, S\. Goodman, K\. Gimpel, P\. Sharma, and R\. Soricut \(2020\)ALBERT: a lite BERT for self\-supervised learning of language representations\.InInternational Conference on Learning Representations \(ICLR\),Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px2.p1.1)\.
- J\. Lee, J\. Park, J\. Kim, Y\. Kim, J\. Oh, J\. Oh, and J\. Choi \(2025\)AMXFP4: taming activation outliers with asymmetric microscaling floating\-point for 4\-bit LLM inference\.InFindings of the Association for Computational Linguistics: ACL 2025,pp\. 14993–15013\.Note:arXiv:2411\.09909External Links:[Document](https://dx.doi.org/10.18653/v1/2025.findings-acl.776),[Link](https://aclanthology.org/2025.findings-acl.776/)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- J\. Li, P\. H\. W\. Leong, and T\. Chaffey \(2026a\)Quantization robustness of monotone operator equilibrium networks\.External Links:2603\.10562,[Link](https://arxiv.org/abs/2603.10562)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px2.p1.1),[footnote 3](https://arxiv.org/html/2607.16237#footnote3)\.
- J\. Li, M\. Zhang, X\. Xia, H\. Bao, H\. Bai, Z\. Dong, and X\. Yu \(2026b\)BATQuant: outlier\-resilient MXFP4 quantization via learnable block\-wise optimization\.External Links:2603\.16590,[Link](https://arxiv.org/abs/2603.16590)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- M\. Li, T\. Qu, R\. Yao, W\. Sun, and M\. Moens \(2024\)Alleviating exposure bias in diffusion models through sampling with shifted time steps\.InInternational Conference on Learning Representations \(ICLR\),Cited by:[§A\.8](https://arxiv.org/html/2607.16237#A1.SS8.p1.1)\.
- X\. Li, Y\. Liu, L\. Lian, H\. Yang, Z\. Dong, D\. Kang, S\. Zhang, and K\. Keutzer \(2023\)Q\-Diffusion: quantizing diffusion models\.InIEEE/CVF International Conference on Computer Vision \(ICCV\),Cited by:[§A\.9](https://arxiv.org/html/2607.16237#A1.SS9.p2.1),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px3.p1.2)\.
- Y\. Li, R\. Gong, X\. Tan, Y\. Yang, P\. Hu, Q\. Zhang, F\. Yu, W\. Wang, and S\. Gu \(2021\)BRECQ: pushing the limit of post\-training quantization by block reconstruction\.InInternational Conference on Learning Representations \(ICLR\),Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- Z\. Li, Y\. Su, S\. Wang, R\. Yang, C\. Xie, A\. Liu, M\. Li, J\. Cao, Y\. Xie, N\. Wong, and H\. Yang \(2026c\)Quantization meets reasoning: exploring and mitigating degradation of low\-bit llms in mathematical reasoning\.External Links:2505\.11574,[Link](https://arxiv.org/abs/2505.11574)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p1.1)\.
- Z\. Li, Y\. Su, R\. Yang, C\. Xie, Z\. Wang, Z\. Xie, N\. Wong, and H\. Yang \(2025\)Quantization meets reasoning: exploring LLM low\-bit quantization degradation for mathematical reasoning\.External Links:2501\.03035,[Link](https://arxiv.org/abs/2501.03035)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p1.1)\.
- R\. Liu, Y\. Sun, M\. Zhang, H\. Bai, X\. Yu, T\. Yu, C\. Yuan, and L\. Hou \(2025a\)Quantization hurts reasoning? an empirical study on quantized reasoning models\.InConference on Language Modeling \(COLM\),Note:arXiv:2504\.04823Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p1.1)\.
- Z\. Liu, C\. Zhao, I\. Fedorov, B\. Soran, D\. Choudhary, R\. Krishnamoorthi, V\. Chandra, Y\. Tian, and T\. Blankevoort \(2025b\)SpinQuant: llm quantization with learned rotations\.InInternational Conference on Learning Representations \(ICLR\),Note:arXiv:2405\.16406Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- K\. Lv, M\. Zhang, X\. Xia, J\. Ni, S\. Yan, X\. Yu, L\. Hou, C\. Yuan, and H\. Bai \(2026\)What makes low\-bit quantization\-aware training work for reasoning llms? a systematic study\.External Links:2601\.14888,[Link](https://arxiv.org/abs/2601.14888)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p1.1)\.
- H\. Meng, Y\. Luo, Y\. Zhao, W\. Liu, P\. Zhang, and X\. Ma \(2026\)ARCQuant: boosting NVFP4 quantization with augmented residual channels for LLMs\.External Links:2601\.07475,[Link](https://arxiv.org/abs/2601.07475)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- M\. Nagel, R\. A\. Amjad, M\. van Baalen, C\. Louizos, and T\. Blankevoort \(2020\)Up or down? adaptive rounding for post\-training quantization\.InInternational Conference on Machine Learning \(ICML\),Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- M\. Nagel, M\. Fournarakis, R\. A\. Amjad, Y\. Bondarenko, M\. van Baalen, and T\. Blankevoort \(2021\)A white paper on neural network quantization\.External Links:2106\.08295,[Link](https://arxiv.org/abs/2106.08295)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- M\. Ning, M\. Li, J\. Su, A\. A\. Salah, and I\. O\. Ertugrul \(2024\)Elucidating the exposure bias in diffusion models\.InInternational Conference on Learning Representations \(ICLR\),Cited by:[§A\.8](https://arxiv.org/html/2607.16237#A1.SS8.p1.1),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px3.p1.2)\.
- M\. Ning, E\. Sangineto, A\. Porrello, S\. Calderara, and R\. Cucchiara \(2023\)Input perturbation reduces exposure bias in diffusion models\.InProceedings of the 40th International Conference on Machine Learning,Proceedings of Machine Learning Research, Vol\.202,pp\. 26245–26265\.External Links:[Link](https://proceedings.mlr.press/v202/ning23a.html)Cited by:[§A\.8](https://arxiv.org/html/2607.16237#A1.SS8.p1.1)\.
- NVIDIA, F\. Abecassis, A\. Agrusa, D\. Ahn, J\. Alben, S\. Alborghetti, M\. Andersch, S\. Arayandi, A\. Bjorlin, A\. Blakeman, E\. Briones, I\. Buck, B\. Catanzaro, M\. Chang, J\. Choi, M\. Chrzanowski, E\. Chung, V\. Cui, S\. Dai, B\. Darvish Rouhani, C\. del Mundo, D\. Donia, B\. Eryilmaz, H\. Estela, A\. Goel, O\. Goncharov, Y\. Guvvala, R\. Hesse, R\. Hewett, H\. Hum, U\. Kapasi, B\. Khailany, M\. Khona, N\. Knight, A\. Kondratenko, R\. Krashinsky, B\. Lanir, S\. Layton, M\. Lightstone, D\. Lo, P\. Micikevicius, A\. Mishra, T\. Moon, D\. Narayanan, C\. Ni, A\. Paithankar, S\. Pasumarthi, A\. Patel, M\. Patwary, A\. Poojary, G\. Prasad, S\. Priyadarshi, Y\. Qin, X\. Ren, O\. Rybakov, C\. Sakr, S\. Satheesh, S\. Sergienko, P\. Shamis, K\. Shankar, N\. Sharma, M\. Shoeybi, M\. Siu, M\. Smelyanskiy, D\. Stosic, D\. Stosic, B\. Su, F\. Sun, N\. Tajbakhsh, S\. Thomas, P\. Tredak, E\. Tsykunov, G\. Vaithilingam, A\. Vavre, R\. Venkatesan, R\. Waleffe, Q\. Wan, H\. Wang, M\. Wang, L\. Wei, H\. Wu, E\. Wu, K\. Wyss, N\. Xu, J\. Xue, C\. Yang, Y\. Zhai, R\. Zhang, J\. Zhu, and Z\. Zhu \(2025\)Pretraining large language models with NVFP4\.External Links:2509\.25149,[Link](https://arxiv.org/abs/2509.25149)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- Open Compute Project \(2023\)OCP microscaling formats \(mx\) specification v1\.0\.Note:[https://www\.opencompute\.org/documents/ocp\-microscaling\-formats\-mx\-v1\-0\-spec\-final\-pdf](https://www.opencompute.org/documents/ocp-microscaling-formats-mx-v1-0-spec-final-pdf)Accessed May 30, 2026Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1),[§4\.4](https://arxiv.org/html/2607.16237#S4.SS4.p2.8),[§4\.4](https://arxiv.org/html/2607.16237#S4.SS4.p3.2)\.
- J\. Ott, Z\. Lin, Y\. Zhang, S\. Liu, and Y\. Bengio \(2016\)Recurrent neural networks with limited numerical precision\.External Links:1608\.06902,[Link](https://arxiv.org/abs/1608.06902)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px2.p1.1),[§3\.2](https://arxiv.org/html/2607.16237#S3.SS2.p3.1)\.
- E\. Park, D\. Kim, S\. Yoo, and P\. Vajda \(2018\)Precision highway for ultra low\-precision quantization\.External Links:1812\.09818,[Link](https://arxiv.org/abs/1812.09818)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px2.p1.1),[§3\.2](https://arxiv.org/html/2607.16237#S3.SS2.p3.1)\.
- K\. U\. Qasim and J\. Zhang \(2025\)Accelerating training speed of tiny recursive models with curriculum guided adaptive recursion\.External Links:2511\.08653,[Link](https://arxiv.org/abs/2511.08653)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px1.p2.1)\.
- P\. Rauba, C\. Fanconi, and M\. van der Schaar \(2026\)Tiny autoregressive recursive models\.External Links:2603\.08082,[Link](https://arxiv.org/abs/2603.08082)Cited by:[§1](https://arxiv.org/html/2607.16237#S1.p1.1),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px1.p2.1)\.
- B\. D\. Rouhani, R\. Zhao, A\. More, M\. Hall, A\. Khodamoradi, S\. Deng, D\. Choudhary, M\. Cornea, E\. Dellinger, K\. Denolf, D\. Stosic, V\. Elango, M\. Golub, A\. Heinecke, P\. James\-Roxby, D\. Jani, G\. Kolhe, M\. Langhammer, A\. Li, L\. Melnick, M\. Mesmakhosroshahi, A\. Rodriguez, M\. Schulte, R\. Shafipour, L\. Shao, M\. Siu, P\. Dubey, P\. Micikevicius, M\. Naumov, C\. Verrilli, R\. Wittig, D\. Burger, and E\. Chung \(2023\)Microscaling data formats for deep learning\.External Links:2310\.10537,[Link](https://arxiv.org/abs/2310.10537)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1),[§4\.4](https://arxiv.org/html/2607.16237#S4.SS4.p2.8),[§4\.4](https://arxiv.org/html/2607.16237#S4.SS4.p3.2)\.
- S\. Ryu, M\. Salzmann, and S\. Javed \(2026\)Q\-Drift: quantization\-aware drift correction for diffusion model sampling\.External Links:2603\.18095,[Link](https://arxiv.org/abs/2603.18095)Cited by:[§A\.9](https://arxiv.org/html/2607.16237#A1.SS9.p3.1)\.
- A\. Sghaier, A\. Parviz, and A\. Jolicoeur\-Martineau \(2026\)Probabilistic tiny recursive model\.External Links:2605\.19943,[Link](https://arxiv.org/abs/2605.19943)Cited by:[§A\.4](https://arxiv.org/html/2607.16237#A1.SS4.SSS0.Px1.p1.3),[§1](https://arxiv.org/html/2607.16237#S1.p1.1),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px1.p2.1),[§5\.1](https://arxiv.org/html/2607.16237#S5.SS1.p1.1)\.
- Y\. Shang, Z\. Yuan, B\. Xie, B\. Wu, and Y\. Yan \(2023\)Post\-training quantization on diffusion models\.InIEEE/CVF Conference on Computer Vision and Pattern Recognition \(CVPR\),Cited by:[§A\.9](https://arxiv.org/html/2607.16237#A1.SS9.p2.1),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px3.p1.2)\.
- Y\. Shao, P\. Wang, Y\. Chen, C\. Xu, Z\. Wei, and J\. Cheng \(2025\)Block rotation is all you need for MXFP4 quantization\.External Links:2511\.04214,[Link](https://arxiv.org/abs/2511.04214)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- J\. So, J\. Lee, D\. Ahn, H\. Kim, and E\. Park \(2023\)Temporal dynamic quantization for diffusion models\.InAdvances in Neural Information Processing Systems \(NeurIPS\),Cited by:[§A\.9](https://arxiv.org/html/2607.16237#A1.SS9.p2.1),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px3.p1.2),[§3\.3](https://arxiv.org/html/2607.16237#S3.SS3.p3.3)\.
- A\. Tseng, T\. Yu, and Y\. Park \(2025\)Training LLMs with MXFP4\.InProceedings of The 28th International Conference on Artificial Intelligence and Statistics,Proceedings of Machine Learning Research, Vol\.258,pp\. 1630–1638\.External Links:[Link](https://proceedings.mlr.press/v258/tseng25a.html)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- G\. Wang, J\. Li, Y\. Sun, X\. Chen, C\. Liu, Y\. Wu, M\. Lu, S\. Song, and Y\. Abbasi Yadkori \(2025\)Hierarchical reasoning model\.Note:Sapient IntelligenceExternal Links:2506\.21734,[Link](https://arxiv.org/abs/2506.21734)Cited by:[§A\.13](https://arxiv.org/html/2607.16237#A1.SS13.SSS0.Px1.p1.8),[§1](https://arxiv.org/html/2607.16237#S1.p1.1),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px1.p1.2),[§3\.1](https://arxiv.org/html/2607.16237#S3.SS1.p1.11)\.
- G\. Wang, C\. Liu, C\. Wang, C\. Zhou, Y\. Sun, Y\. Wu, S\. Zhen, L\. Scimeca, and Y\. Abbasi Yadkori \(2026\)HRM\-Text: efficient pretraining beyond scaling\.External Links:2605\.20613,[Link](https://arxiv.org/abs/2605.20613)Cited by:[§1](https://arxiv.org/html/2607.16237#S1.p1.1),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px1.p2.1)\.
- W\. Wang and F\. Reid \(2026\)Tiny recursive reasoning with Mamba\-2 attention hybrid\.External Links:2602\.12078,[Link](https://arxiv.org/abs/2602.12078)Cited by:[§1](https://arxiv.org/html/2607.16237#S1.p1.1),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px1.p2.1)\.
- G\. Xiao, J\. Lin, M\. Seznec, H\. Wu, J\. Demouth, and S\. Han \(2023\)SmoothQuant: accurate and efficient post\-training quantization for large language models\.InInternational Conference on Machine Learning \(ICML\),Cited by:[§A\.7](https://arxiv.org/html/2607.16237#A1.SS7.p1.7),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- K\. Xu and I\. Sato \(2025\)On expressive power of looped transformers: theoretical analysis and enhancement via timestep encoding\.InProceedings of the 42nd International Conference on Machine Learning,A\. Singh, M\. Fazel, D\. Hsu, S\. Lacoste\-Julien, F\. Berkenkamp, T\. Maharaj, K\. Wagstaff, and J\. Zhu \(Eds\.\),Proceedings of Machine Learning Research, Vol\.267,pp\. 69613–69646\.External Links:[Link](https://proceedings.mlr.press/v267/xu25x.html)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px1.p1.2)\.
- C\. Yang, N\. Srebro, and Z\. Li \(2026\)Recursive models for long\-horizon reasoning\.External Links:2603\.02112,[Link](https://arxiv.org/abs/2603.02112)Cited by:[§1](https://arxiv.org/html/2607.16237#S1.p1.1),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px1.p2.1)\.
- Y\. Yao, F\. Tian, J\. Chen, H\. Lin, G\. Dai, Y\. Liu, and J\. Wang \(2024\)Timestep\-aware correction for quantized diffusion models\.InEuropean Conference on Computer Vision \(ECCV\),Cited by:[§A\.9](https://arxiv.org/html/2607.16237#A1.SS9.p2.1)\.
- Z\. Yao, R\. Yazdani Aminabadi, M\. Zhang, X\. Wu, C\. Li, and Y\. He \(2022\)ZeroQuant: efficient and affordable post\-training quantization for large\-scale transformers\.InAdvances in Neural Information Processing Systems \(NeurIPS\),Cited by:[§A\.6](https://arxiv.org/html/2607.16237#A1.SS6.SSS0.Px1.p1.1)\.
- M\. Zhang, J\. Li, Z\. Sun, H\. Bai, H\. Zhen, Z\. Dong, and X\. Yu \(2026a\)Benchmarking post\-training quantization of large language models under microscaling floating point formats\.External Links:2601\.09555,[Link](https://arxiv.org/abs/2601.09555)Cited by:[§A\.2](https://arxiv.org/html/2607.16237#A1.SS2.p2.1),[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1),[§6](https://arxiv.org/html/2607.16237#S6.SS0.SSS0.Px3.p1.1)\.
- N\. Zhang, E\. Kwek, Y\. Zhang, N\. Nguyen, P\. Mitra, and R\. Zhang \(2026b\)When reasoning meets compression: understanding the effects of LLMs compression on large reasoning models\.External Links:2504\.02010,[Link](https://arxiv.org/abs/2504.02010)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p1.1)\.
- N\. Zhang, E\. Kwek, Y\. Zhang, M\. Pan, S\. Wang, P\. Mitra, and R\. Zhang \(2026c\)QuantLRM: quantization of large reasoning models via fine\-tuning signals\.External Links:2602\.02581,[Link](https://arxiv.org/abs/2602.02581)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p1.1)\.
- S\. Q\. Zhang, B\. McDanel, and H\. Kung \(2022\)FAST: DNN training under variable precision block floating point with stochastic rounding\.In2022 IEEE International Symposium on High\-Performance Computer Architecture \(HPCA\),pp\. 846–860\.External Links:[Document](https://dx.doi.org/10.1109/HPCA53966.2022.00067)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- Y\. Zhang, L\. Zhao, S\. Cao, W\. Wang, T\. Cao, F\. Yang, M\. Yang, S\. Zhang, and N\. Xu \(2023\)Integer or floating point? new outlooks for low\-bit quantization on large language models\.External Links:2305\.12356,[Link](https://arxiv.org/abs/2305.12356)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1)\.
- J\. Zhao, M\. Wang, M\. Zhang, Y\. Shang, X\. Liu, Y\. Wang, M\. Zhang, and L\. Nie \(2025\)Benchmarking post\-training quantization in llms: comprehensive taxonomy, unified evaluation, and comparative analysis\.External Links:2502\.13178,[Link](https://arxiv.org/abs/2502.13178)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p1.1)\.
- K\. Zhu, Y\. He, and J\. Wu \(2023\)Quantized feature distillation for network quantization\.InAAAI Conference on Artificial Intelligence,Cited by:[§A\.6](https://arxiv.org/html/2607.16237#A1.SS6.SSS0.Px1.p1.1)\.
- S\. Zhuo, H\. Chen, R\. K\. Ramakrishnan, T\. Chen, C\. Feng, Y\. Lin, P\. Zhang, and L\. Shen \(2022\)An empirical study of low precision quantization for TinyML\.External Links:2203\.05492,[Link](https://arxiv.org/abs/2203.05492)Cited by:[§2](https://arxiv.org/html/2607.16237#S2.SS0.SSS0.Px4.p2.1),[§4\.4](https://arxiv.org/html/2607.16237#S4.SS4.p1.5)\.

## Appendix ASupporting figures and details

This appendix collects supporting evidence referenced in the main text\. The mainQAT/RAQrows \([Table2](https://arxiv.org/html/2607.16237#A1.T2)\) are reported over three seeds\. All remaining tables report single\-seed point estimates\.

### A\.1Per\-step accuracy curves

[Figure4](https://arxiv.org/html/2607.16237#A1.F4)collects the per\-step trajectory diagnostic \(accuracy and latent divergence\) for all four formats, complementing the divergence curves of[Figure1](https://arxiv.org/html/2607.16237#S1.F1)\. At 8\-bit, accuracy steadily rises toward full precision as the recursion proceeds while the divergence contracts\. Conversely, at per\-tensor 4\-bit, accuracy either fails to improve entirely \(Sudoku\) or saturates below full precision \(Maze\)\.

![Refer to caption](https://arxiv.org/html/2607.16237v1/x4.png)Figure 4:Per\-step trajectory atlas\(full\-coverage diagnostic\)\. Exact accuracy, cell accuracy, and latent divergencedtzd^\{z\}\_\{t\}vs\. recursion step for FP, Int8, per\-tensor Int4, and per\-block MXFP4, on Sudoku \(top\) and Maze \(bottom\)\. Int8 tracks full precision and its divergence contracts; per\-tensor Int4 collapses on the deep Sudoku recursion \(flat\-high divergence,0%0\\%exact\) yet survives the shallow Maze; per\-block MXFP4 converts the growing per\-tensor divergence into a shrinking one, recovering most accuracy\. Int8 is dashed so it does not occlude the FP curve\.
### A\.2Microscaling stabilizes the activation transition

[Figure4](https://arxiv.org/html/2607.16237#A1.F4)shows the trajectory\-level view behind the granularity result of[Section4\.2](https://arxiv.org/html/2607.16237#S4.SS2): step\-by\-step, moving from per\-tensor Int4 to per\-block MXFP4 converts a growing latent divergence into a shrinking one on both tasks\.

This connects our result to a current tension in the LLM literature\. While 4\-bit MXFP is widely reported as lossy and an open challenge\(Zhanget al\.,[2026a](https://arxiv.org/html/2607.16237#bib.bib68); Egiazarianet al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib70)\), our results show that per\-block 4\-bit matches or approaches full precision on structured reasoning tasks\. The likely reason is the operating regime\. Tiny weight\-tied models possess narrow, well\-behaved weight distributions\. These distributions are naturally well\-matched to per\-block scaling, avoiding the microscaling block\-size limits typically reported for large LLMs\(Fasoliet al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib67)\)\.

### A\.3Per\-block integer on Sudoku

[Figure5](https://arxiv.org/html/2607.16237#A1.F5)reports the per\-block integer \(MXInt\) sweep on Sudoku referenced in[Section4\.4](https://arxiv.org/html/2607.16237#S4.SS4)\. This includes the MXInt8 gate result \(84\.1%84\.1\\%, matching FP\) and the MXInt4 weight\-only point \(82\.5%82\.5\\%\)\.

![Refer to caption](https://arxiv.org/html/2607.16237v1/x5.png)Figure 5:Per\-block integer \(MXInt\) results on Sudoku\. MXInt8 matches FP; MXInt4 preserves near\-FP accuracy where per\-tensor Int4 does not\.![Refer to caption](https://arxiv.org/html/2607.16237v1/x6.png)Figure 6:Activation quantization dominates transition bias\.Weight\-vs\.\-activation decomposition on Sudoku for tied and untied TRM\. Weight\-only Int4 shifts accuracy only modestly \(tied84\.1%→78\.5%84\.1\\%\\\!\\to\\\!78\.5\\%, a∼7%\{\\sim\}7\\%relative drop\); adding activation quantization \(4\-bit w\+\+a\) changes the transition enough to remove exact solutions \(tied→0\.0%\\to 0\.0\\%, untied→1\.6%\\to 1\.6\\%\)\. Int8 remains stable\.
### A\.4Recursion\-structure supporting figures

[Figure7\(a\)](https://arxiv.org/html/2607.16237#A1.F7.sf1)provides theEqRbreadth result behind[Section5\.2](https://arxiv.org/html/2607.16237#S5.SS2)\. Aggregating stochastic trajectories successfully lifts full\-precision performance \(majority vote91\.4%91\.4\\%, any\-correct93\.2%93\.2\\%\)\. However, under Int4, accuracy remains pinned at∼0%\{\\sim\}0\\%\. Because every trajectory follows the exact same biased transition, averaging simply cannot expose an unbiased path\.

[Figure7\(b\)](https://arxiv.org/html/2607.16237#A1.F7.sf2)provides the per\-step view behind[Section5\.3](https://arxiv.org/html/2607.16237#S5.SS3)\. Under Int4, deterministic andPTRMtrajectories \(whether using averaging or selection\) stay at zero accuracy at every single recursion step\. Simultaneously, the latent divergence remains trapped near a shifted attractor\.

##### Test\-time stochasticity \(PTRM\), in full\.

We begin with the near\-zero Int4 \(4\-bit w\+\+a\)TRMfrom[Section3](https://arxiv.org/html/2607.16237#S3)\. We then injectPTRM\-style test\-time stochasticity\(Sghaieret al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib4)\)\. This adds zero\-mean Gaussian noise at each recursion step, withKKtrajectories aggregated either by averaging or by selecting the best trajectory usingTRM’s learned halt head\. We sweepKKand the noise scale without retraining\.

Int4 exact\-accuracy stays firmly at0\.0%0\.0\\%for everyK∈\{1,4,16\}K\\in\\\{1,4,16\\\}and every noise standard deviation in\{0\.02,…,1\.0\}\\\{0\.02,\\dots,1\.0\\\}, applied to either latent state\. Larger noise only degrades cell\-accuracy\. Averaging modestly shrinks the latent divergence \(274→241274\\\!\\to\\\!241\) but fails to improve exact accuracy, while selection simply commits to a single biased trajectory\. The control is the exact same machinery on full precision, where halt\-head selection lifts accuracy monotonically \(84\.1%→89\.5%→93\.3%→95\.0%84\.1\\%\\\!\\to\\\!89\.5\\%\\\!\\to\\\!93\.3\\%\\\!\\to\\\!95\.0\\%forK=1,4,16,64K=1,4,16,64\)\. The selection mechanism is real and implemented correctly\. However, Int4 offers no high\-accuracy trajectory to select because every path is corrupted by the same biased transition\.

##### Trained\-in stochasticity \(GRAM\)\.

ThePTRMresult specifically addresses stochasticity added*at inference*\. Whether*trained\-in*stochasticity confers inherent robustness remains an open question for future work\. Models like GRAM utilize learned variational per\-step transitions\(Baeket al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib5)\), but their code and checkpoints are currently unreleased\. We are running an in\-house proxy to probe this hypothesis \(aTRMtrained with stochastic transitions, then quantized\)\. Our working expectation is that training a model to tolerate*zero\-mean*variance may not confer tolerance to a*systematic*quantization bias\.

![Refer to caption](https://arxiv.org/html/2607.16237v1/x7.png)\(a\)EqR: stochastic breadth\.
![Refer to caption](https://arxiv.org/html/2607.16237v1/x8.png)\(b\)PTRM on TRM: per\-step accuracy and divergence\.

Figure 7:Supporting evidence for the recursion\-structure analysis\. \(a\) On EqR, breadth improves full precision but not Int4\. \(b\) On TRM, test\-time stochasticity leaves Int4 accuracy at zero across all recursion steps\.![Refer to caption](https://arxiv.org/html/2607.16237v1/x9.png)Figure 8:Test\-time stochasticity does not improve Int4 accuracy\.Final\-step exact\-accuracy vs\. number of trajectoriesKKon Sudoku \(PTRM on TRM, noise0\.050\.05\)\. On full precision, halt\-head selection climbs84\.1%→95\.0%84\.1\\%\\\!\\to\\\!95\.0\\%\(averaging flat at∼84%\{\\sim\}84\\%\); on Int4, both averaging and selection remain at0\.0%0\.0\\%for all evaluatedK≤16K\\leq 16\(theK=64K=64Int4 run was memory\-limited\)\. The perturbation is systematic, so averaging and selection do not expose an unbiased trajectory\.![Refer to caption](https://arxiv.org/html/2607.16237v1/x10.png)Figure 9:Activation granularity controls EqR quantization\.Full\-Int4 EqR exact\-accuracy atD​16D16\(weights per\-channel\) as activation scaling is refined: per\-tensor0\.01%0\.01\\%→\\toper\-token60\.6%60\.6\\%→\\toper\-group\-323282\.2%82\.2\\%→\\toper\-group\-161682\.3%82\.3\\%, approaching full precision \(86\.4%86\.4\\%\)\. The same per\-block principle that preserves TRM and Maze also preserves the extreme\-depth equilibrium model\.The basin panel of[Figure3](https://arxiv.org/html/2607.16237#S5.F3)\(b\) visualizes the granularity effect as a basin landscape\. The surface is a Gaussian\-smoothed interpolation of measured per\-step residuals over a two\-dimensional PCA projection of FP\-centeredEqRstates\. \(This should be read as a trajectory visualization rather than a mathematically fitted potential function\)\. The full\-precision path, Int8, and per\-block MXInt4 all smoothly move toward the low\-residual region around the FP attractor\. By contrast, per\-tensor Int4 terminates in a high\-residual region of the projected state space, despite using the exact same weights as MXInt4\.

### A\.5Reuse controls: dose–response and the untied weight control

##### Dose–response in transition reuse\.

If the observed failure is genuinely driven by accumulation, its severity must scale with how often the block is reused\. We tested this by sweeping the number of inner recursion cycles, directly multiplying the per\-step reuse count\. We then measured the full\-precision\-vs\.\-Int4 gap at the final step \([Figure10](https://arxiv.org/html/2607.16237#A1.F10)\)\.

On Sudoku, the gap strictly*widens*with reuse\. Full\-precision cell\-accuracy rises from81%81\\%to94%94\\%as cycles increase\. In stark contrast, Int4 cell\-accuracy*falls*from35%35\\%to25%25\\%, and the Int4 latent divergence jumps once enough cycles are present\. Adding recursion makes the full\-precision model better and the quantized model worse\. This is the signature of error accumulation\. On Maze, the same sweep remains safely in the contraction regime: Int4 exact\-accuracy climbs from44%44\\%to76%76\\%and latent divergence shrinks \(385→324385\\\!\\to\\\!324\)\. The two tasks simply sit on opposite sides of the contraction\-versus\-drift boundary\. The controlling variable dictating success or failure is precisely how many times the quantized block is reused before readout\.

![Refer to caption](https://arxiv.org/html/2607.16237v1/x11.png)Figure 10:Dose–response to transition reuse\.Sweeping inner recursion cyclesLLchanges how many times the quantized block is applied before read\-out \(SudokuL∈\{1,2,4,6,8\}L\\in\\\{1,2,4,6,8\\\}, MazeL∈\{1,2,4,8\}L\\in\\\{1,2,4,8\\\}\)\.\(a\)On Sudoku the FP–Int4 cell\-accuracy gap*widens*monotonically with reuse \(accumulation\)\.\(b,c\)On the shallower Maze recursion Int4 instead*self\-corrects*: exact accuracy climbs toward FP and latent divergence shrinks\. Severity tracks effective recursion depth, as the accumulation account predicts\.
##### Untied matched\-capacity control\.

To isolate the effect of weight reuse from the inherent severity of 4\-bit quantization, we built a matched\-capacity control\. This control*unties*theLL\-cycle positions, providing each position with its own distinct weights \(7×7\\timesless intra\-pass reuse\)\. We preserved the rest of the architecture and training pipeline identically\.

[Figure11](https://arxiv.org/html/2607.16237#A1.F11)provides an informative result in both directions\. Reuse clearly*is*a primary driver of the error\. Under Int4, the untied model retains roughly twice the cell\-accuracy of the tied model \(54%54\\%vs\.25%25\\%, or61%61\\%vs\.27%27\\%of its own full\-precision baseline\)\. It also maintains a lower, flatter trajectory divergence \(217217vs\.274274\)\. However, reuse is incomplete as a sole explanation\. Even fully untied, exact\-accuracy remains near zero \(1\.6%1\.6\\%\), and the trajectory divergence still grows over time instead of decaying\.

This happens because the reuse that survives untying is still substantial\. Per forward pass, the fully tied model applies each down\-projection weight336336times\. Untying the innerLL\-cycle positions cuts this by7×7\\times, resulting in4848reuses per weight \(contributed by the surviving outerHH\-cycle and deep\-supervision loops\)\. Going below4848reuses would require completely untying those outer loops as well\. That residual reuse of4848applications, combined with the intrinsic harshness of per\-tensor 4\-bit quantization, is enough to destroy exact solutions\. Ultimately, weight reuse heavily amplifies transition drift and is necessary to explain the magnitude of the displacement\. However, the near\-zero accuracy reflects a combination of this reuse and the underlying activation\-quantization granularity problem\.

![Refer to caption](https://arxiv.org/html/2607.16237v1/x12.png)Figure 11:Matched\-capacity untied control\.Untying theLL\-cycle positions \(7×7\\timesless reuse\) roughly doubles Int4 cell\-accuracy and lowers final latent divergence\. Untied Int4 still has near\-zero exact accuracy \(1\.6%1\.6\\%\), so reuse amplifies the failure of exact solutions without solely causing it\.

### A\.6Quantization\-aware training: full results

Per\-block scaling provides a highly effective post\-training transition rule\. A second, complementary route isQAT\. It is critical to separate this cleanly from thePTQresults, as the two interact informatively\.

Crucially,QAT*by itself*compensates for much of the per\-tensor activation loss\. Naive Int4QATimmediately raises Sudoku performance from0\.0%0\.0\\%\(PTQ\) to71\.8%±0\.371\.8\\%\\\!\\pm\\\!0\.3\. It also improves Maze from73\.2%73\.2\\%to82\.2%±0\.782\.2\\%\\\!\\pm\\\!0\.7\([Table2](https://arxiv.org/html/2607.16237#A1.T2)\)\. Therefore, withinQAT, much of the activation\-scale mismatch is naturally trained away\. The residual gain available to a learned quantizer lies entirely in the*weights*\. Accordingly, we froze ourQATmethod to weight\-LSQ: learning step sizes solely on the weights\(Esseret al\.,[2020](https://arxiv.org/html/2607.16237#bib.bib93)\), while utilizing plain Int4 activations\.

This frozen weight\-LSQ\(RAQ\) method adds∼9\{\\sim\}9points on Sudoku, jumping from71\.8%±0\.371\.8\\%\\\!\\pm\\\!0\.3to81\.1%±0\.681\.1\\%\\\!\\pm\\\!0\.6\. This gap far exceeds per\-seed spread and closes the majority of the remaining FP gap\. A targeted decomposition confirms this gain lives strictly in the weights\. ApplyingLSQsolely to activations yields70\.9%70\.9\\%\(essentially the naive baseline\)\. Conversely, applying it to the weights yields the full81\.1%81\.1\\%\. Furthermore, an ablation that varies only the bias precision leaves accuracy completely unchanged, showing the gain stems from the learned step size rather than the bias representation\.

This picture is remarkably consistent across architectures\. On Maze’s attention recursion,RAQis statistically tied with naiveQATand highly stable \(81\.8%±1\.081\.8\\%\\\!\\pm\\\!1\.0vs\.82\.2%±0\.782\.2\\%\\\!\\pm\\\!0\.7, both near the FP84\.7%84\.7\\%baseline\)\. The instability observed earlier was specific to quantizing the attention*activations*\(activation\-LSQdrops performance to64\.9%64\.9\\%\)\. The frozen weight\-side method explicitly avoids this trap\.

In summary, weight\-LSQdelivers a significant win where naiveQATstruggles \(Sudoku/MLP\), while remaining stable where naiveQATalready succeeds \(Maze/attention\)\. Despite theseQATgains, per\-block scaling \([Table1](https://arxiv.org/html/2607.16237#S4.T1)\) remains the superior and primary post\-training mechanism\.

Table 2:Quantization\-aware training: a secondary, weight\-side route\(1212k steps\)\. QAT alone already compensates for much of the per\-tensor activation loss \(naive Int4 QAT, Sudoku0\.0%→71\.8%0\.0\\%\\\!\\to\\\!71\.8\\%\); the residual learned\-quantizer gain is in the*weights*\(weight\-LSQ==our RAQ\): a significant\+9\.3\+9\.3points on Sudoku \(gap≫\\ggstd\) and statistically tied on Maze, a cross\-architecture result\. The naive\-QAT and RAQ rows are mean±\\pmstd over33seeds; the decomposition rows are single\-seed\. Per\-block MXInt4 remains the primary post\-training mechanism\.##### Per\-iteration alternatives \(E4/E5\): negative results\.

The transition\-bias theory suggests two natural per\-iteration defenses\. The first is iteration\-decoupled normalization \(E4\), which gives the reused block per\-iteration normalization statistics so the quantized activation distribution remains stationary\. The second is cross\-iteration distillation \(E5\), which distills the quantized recursion toward the full\-precision trajectory step\-by\-step\(Yaoet al\.,[2022](https://arxiv.org/html/2607.16237#bib.bib104); Zhuet al\.,[2023](https://arxiv.org/html/2607.16237#bib.bib113)\)\. Both naturally target the per\-iteration bias\.

However, at convergence, neither method improves upon the baseline\. On Sudoku, E4 reaches70\.7%70\.7\\%, E5 reaches69\.4%69\.4\\%, and their combination reaches72\.7%72\.7\\%\. All three are numerically identical to the matching single\-seed naive\-QATbaseline \(72\.2%72\.2\\%; the three\-seed mean is71\.8%±0\.371\.8\\%\\\!\\pm\\\!0\.3,[Table2](https://arxiv.org/html/2607.16237#A1.T2)\)\. We therefore report these strictly as negative results\. Once the activation scale is handled properly, the per\-iteration structure requires no special algorithmic handling\. Per\-block scaling remains the simplest, most robust transition\-level rule\.

### A\.7Static outlier controls do not rescue per\-tensor Int4

[Table3](https://arxiv.org/html/2607.16237#A1.T3)reports the full outlier\-control sweep behind[Section4\.3](https://arxiv.org/html/2607.16237#S4.SS3)\. A natural objection is that per\-tensor Int4 fails for the usual reason transformer activations are hard to quantize: a few large outlier channels\. We test two canonical activation\-outlier methods at matched coverage on Sudoku \(the maximum\-headroom case\): SmoothQuant, which migrates activation scale into the weights\(Xiaoet al\.,[2023](https://arxiv.org/html/2607.16237#bib.bib105)\), swept across its migration strengthα\\alpha, and a fixed Hadamard rotation as in QuaRot\(Ashkbooset al\.,[2024](https://arxiv.org/html/2607.16237#bib.bib83)\)\. Neither closes the gap: the best SmoothQuant setting \(α=0\.5\\alpha\{=\}0\.5\) reaches only0\.7%0\.7\\%and Hadamard0\.0%0\.0\\%, versus MXInt4’s80\.1%80\.1\\%\. This matches our accumulation account\. A*static*per\-channel scale or*fixed*rotation corrects the outlier distribution only once; after that the divergence stays high and flat across steps \(SmoothQuant242→234242\\\!\\to\\\!234, Hadamard258→245258\\\!\\to\\\!245\) instead of contracting\. To succeed, the activation scale must dynamically track local block ranges at each recursive application\.

Table 3:Static activation\-outlier controls do not rescue per\-tensor Int4\(Sudoku,44\-bit w\+\+a, qlinear\-only coverage, final step; single\-seed\)\. SmoothQuant is swept over its migration strengthα\\alpha; QuaRot applies a fixed Hadamard rotation\. The best static correction \(α=0\.5\\alpha\{=\}0\.5\) reaches0\.7%0\.7\\%, versus80\.1%80\.1\\%for per\-block MXInt4\.
### A\.8Iterated models and transition\-aware quantization

The mechanism we study, per\-step error compounding across an iterated computation, is well documented in other iterated domains\. In autoregressive and diffusion generation, exposure\-bias research frames train–test mismatch as per\-step errors accumulating across a generated trajectory\(Ninget al\.,[2024](https://arxiv.org/html/2607.16237#bib.bib27); Aroraet al\.,[2022](https://arxiv.org/html/2607.16237#bib.bib31)\)\. Self\-recovery analyses similarly caution that autoregressive distortions need not grow monotonically\(Heet al\.,[2021](https://arxiv.org/html/2607.16237#bib.bib32)\)\. A vast body of mitigation work addresses this specific mismatch through input perturbation, scheduled sampling, or shifted timesteps\(Ninget al\.,[2023](https://arxiv.org/html/2607.16237#bib.bib28); Bengioet al\.,[2015](https://arxiv.org/html/2607.16237#bib.bib30); Liet al\.,[2024](https://arxiv.org/html/2607.16237#bib.bib29)\)\.

### A\.9Diffusion quantization and manifold drift

Quantized diffusion models provide the closest theoretical analogue to our timestep\-accumulation effect\. A diffusion sampler repeatedly queries a single denoising network with shared weights, and uses the result to sequentially update a latent trajectory\. Consequently,PTQperturbs an iterated transition kernel rather than a collection of independent feedforward layers\.

PTQ4DM and Q\-Diffusion successfully identify this multi\-timestep structure as the central obstacle\. Because activation and noise\-prediction distributions shift with the timestep, a single\-step calibration unavoidably induces step\-dependent bias\(Shanget al\.,[2023](https://arxiv.org/html/2607.16237#bib.bib35); Liet al\.,[2023](https://arxiv.org/html/2607.16237#bib.bib36)\)\. Temporal Dynamic Quantization and TFMQ\-DM make this exact dependence explicit through timestep\-conditioned statistics\(Soet al\.,[2023](https://arxiv.org/html/2607.16237#bib.bib46); Huanget al\.,[2024](https://arxiv.org/html/2607.16237#bib.bib48)\)\. PTQD provides a full dynamical account: quantization noise decomposes into correlated and residual components, induces mean deviation, and accumulates over denoising steps to drastically reduce the signal\-to\-noise ratio \(SNR\) at late timesteps\(Heet al\.,[2023](https://arxiv.org/html/2607.16237#bib.bib39)\)\. QNCD and TAC further distinguish single\-step disturbance from inter\-step accumulation, framing the latter as exposure bias across the sampling trajectory\(Chuet al\.,[2024](https://arxiv.org/html/2607.16237#bib.bib40); Yaoet al\.,[2024](https://arxiv.org/html/2607.16237#bib.bib41)\)\.

This represents the continuous generative counterpart of our 4\-bit trajectory drift\. In a diffusion sampler, systematic quantization shifts the estimated mean update\. As a result, the reverse trajectory progressively abandons the full\-precision path and drifts away from the data manifold\. Recent methods combat this by treating quantization as a backward displacement\(Chenet al\.,[2024](https://arxiv.org/html/2607.16237#bib.bib42)\), explicitly altering the sampling trajectory\(Frumkin and Marculescu,[2025](https://arxiv.org/html/2607.16237#bib.bib55)\), or applying a marginal\-preserving drift adjustment\(Ryuet al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib43)\)\.

In a recursive reasoner, the mathematical equivalent is a refinement path through latent logic space\. Our per\-tensor Int4 result is the direct logical analogue of this manifold drift\. The quantized transition repeatedly injects a biased activation perturbation, pushing the reasoning trajectory away from the full\-precision solution manifold instead of allowing it to contract back\.

The SNR comparison highlights exactly why this effect is so catastrophic for reasoning models\. Diffusion samplers are most fragile late in the reverse chain, when the residual update is small and quantization noise easily dominates microscopic refinements\. Recursive reasoners possess an analogous late\-stage regime\. Their terminal states are strictly constrained by discrete global validity: a Sudoku assignment must perfectly obey all row, column, and box constraints\. In continuous image space, modest manifold drift merely manifests as blur or local artifacts\. In discrete logical space, the threshold is sharp\. A small, systematic displacement changes a single symbol, violating a global constraint and instantly reducing exact accuracy to zero\. Both systems accumulate timestep error under iterated shared weights\. However, while the perceptual manifold tolerates small geometric deviations, the logical solution manifold is effectively all\-or\-nothing\.

### A\.10Mechanism: per\-layer quantization bias

[Figure12](https://arxiv.org/html/2607.16237#A1.F12)details the per\-layer calibration data supporting[Section3\.3](https://arxiv.org/html/2607.16237#S3.SS3)\. The relative activation quantization error concentrates almost entirely in the recursive down\-projection layers\. These are exactly the components the recursion re\-applies most frequently per forward pass\. This directly localizes the transition components responsible for repeatedly injecting the systematic quantization bias\.

![Refer to caption](https://arxiv.org/html/2607.16237v1/x13.png)Figure 12:Reused transition layers dominate activation error\.Per\-layer relative activation error magnitude for a calibrated Int4 TRM on Sudoku\. The largest errors occur in recursive down\-projection layers that are re\-applied336×336\\timesper forward pass, compared with16×16\\timesfor the readout heads\. This localizes the transition components where any systematic quantization component is repeatedly injected\.
### A\.11Dynamical\-systems perspective: full statement

The contraction\-versus\-drift phenomenon admits a lightweight, conditional mathematical characterization\. To formulate this, we must cleanly separate two properties of the per\-step transition perturbationϵQ\\epsilon\_\{Q\}from[Equation1](https://arxiv.org/html/2607.16237#S3.E1): its*magnitude*and its*state\-variation*\. On a closed neighbourhoodUUcontaining the trajectory region visited by the recursion, and for a fixed inputxx, we define:

sups∈U∥ϵQ​\(s,x\)∥≤ε,∥ϵQ​\(s,x\)−ϵQ​\(s′,x\)∥≤δ​∥s−s′∥,𝝁Q​\(x\)≔𝔼t​\[ϵQ​\(stq,x\)\]\\sup\_\{s\\in U\}\\lVert\\epsilon\_\{Q\}\(s,x\)\\rVert\\leq\\varepsilon,\\qquad\\lVert\\epsilon\_\{Q\}\(s,x\)\-\\epsilon\_\{Q\}\(s^\{\\prime\},x\)\\rVert\\leq\\delta\\,\\lVert s\-s^\{\\prime\}\\rVert,\\qquad\\bm\{\\mu\}\_\{Q\}\(x\)\\coloneqq\\mathbb\{E\}\_\{t\}\\\!\\big\[\\epsilon\_\{Q\}\(s\_\{t\}^\{q\},x\)\\big\]\(4\)Here,ε\\varepsilonstrictly bounds the magnitude andδ\\deltabounds the state\-variation overUU\. Crucially,𝝁Q​\(x\)\\bm\{\\mu\}\_\{Q\}\(x\)isolates the systematic, nonzero\-mean component of the perturbation*along inputxx’s specific trajectory*\. \(This is an average over steps, which uniquely drives the per\-input displacement\. It is not an input\-pooled average, which could falsely cancel out coherent biases pointing in different directions for different inputs\)\.

Because a real quantizer is piecewise\-constant, and therefore not literally Lipschitz continuous at its rounding boundaries, we readδ\\deltaas a*smoothed*local sensitivity\. It acts as an expected, non\-pointwise variation bound onϵQ\\epsilon\_\{Q\}\.[Section3\.3](https://arxiv.org/html/2607.16237#S3.SS3)measures the empirical layerwise analogue of𝝁Q\\bm\{\\mu\}\_\{Q\}\.

Empirically, the full\-precision recursion is highly contractive near a fixed points∗s^\{\\ast\}\. Its residuals decay dramatically over time \(e\.g\., onEqR, the FP residual falls27\.5→16\.227\.5\\\!\\to\\\!16\.2with depth; at 8\-bit, the divergence in[Figure1](https://arxiv.org/html/2607.16237#S1.F1)rapidly shrinks\)\. Consequently, we*model*FθF\_\{\\theta\}as a contraction with modulusL<1L<1nears∗s^\{\\ast\}\. This is supported by the measured decay, though we do not claim it as formally proven\.

###### Proposition 1\(Local perturbed fixed\-point model; conditional\)\.

Fix an inputxx, and letFθ​\(⋅,x\)F\_\{\\theta\}\(\\cdot,x\)be locally contractive with modulusL<1L<1on a closed ballUUaround a fixed points∗s^\{\\ast\}\. LetF~=Fθ\+ϵQ\\widetilde\{F\}=F\_\{\\theta\}\+\\epsilon\_\{Q\}, withϵQ\\epsilon\_\{Q\}satisfying the bounds in[Equation4](https://arxiv.org/html/2607.16237#A1.E4)onUU\. IfL\+δ<1L\+\\delta<1andF~\\widetilde\{F\}mapsUUinto itself, thenF~\\widetilde\{F\}has a unique fixed points~∗∈U\\widetilde\{s\}^\{\\ast\}\\in U\(by Banach’s fixed\-point theorem\)\.333Contraction:∥F~​\(s,x\)−F~​\(s′,x\)∥≤\(L\+δ\)​∥s−s′∥\\lVert\\widetilde\{F\}\(s,x\)\-\\widetilde\{F\}\(s^\{\\prime\},x\)\\rVert\\leq\(L\+\\delta\)\\lVert s\-s^\{\\prime\}\\rVert, soL\+δ<1L\+\\delta<1gives a unique fixed point by Banach’s theorem\. Displacement: withs∗=Fθ​\(s∗,x\)s^\{\\ast\}=F\_\{\\theta\}\(s^\{\\ast\},x\)ands~∗=Fθ​\(s~∗,x\)\+ϵQ​\(s~∗,x\)\\widetilde\{s\}^\{\\ast\}=F\_\{\\theta\}\(\\widetilde\{s\}^\{\\ast\},x\)\+\\epsilon\_\{Q\}\(\\widetilde\{s\}^\{\\ast\},x\), contraction gives∥s~∗−s∗∥≤L​∥s~∗−s∗∥\+ε\\lVert\\widetilde\{s\}^\{\\ast\}\-s^\{\\ast\}\\rVert\\leq L\\lVert\\widetilde\{s\}^\{\\ast\}\-s^\{\\ast\}\\rVert\+\\varepsilon, hence[Equation5](https://arxiv.org/html/2607.16237#A1.E5)\. In the equilibrium limit this matches the displacement\-versus\-margin bound ofLiet al\.\([2026a](https://arxiv.org/html/2607.16237#bib.bib26)\)\.Its iterates converge to this point, and:

∥s~∗−s∗∥≤ε1−L\.\\lVert\\widetilde\{s\}^\{\\ast\}\-s^\{\\ast\}\\rVert\\leq\\frac\{\\varepsilon\}\{1\-L\}\.\(5\)

*Remark \(informal\)\.*Under the further idealization thatFθF\_\{\\theta\}is linearized to a fixed JacobianJJalong the trajectory \(∥J∥≤L\\lVert J\\rVert\\leq L\) and the per\-step perturbation carries a constant mean𝝁Q​\(x\)\\bm\{\\mu\}\_\{Q\}\(x\), the trajectory error acquires a coherent component of order∥𝝁Q​\(x\)∥/\(1−L\)\\lVert\\bm\{\\mu\}\_\{Q\}\(x\)\\rVert/\(1\-L\)\. Fluctuations of comparable size that are zero\-mean and*independent across steps*act purely through their variance and produce no deterministic displacement in expectation\.

These two quantities govern two entirely distinct failure modes\. The*magnitude*ε\\varepsilonexplicitly sets the fixed\-point displacementε/\(1−L\)\\varepsilon/\(1\-L\)\. The*state\-variation*δ\\delta\(viaL\+δ<1L\+\\delta<1\) dictates whether the system remains contractive at all\.

When both terms are small, the model enters the 8\-bit regime: it suffers a minor displacement but degrades gracefully \(Int8≈\\approxFP\)\. Per\-tensor Int4, however, represents the high\-error regime\. The observed divergence growth signifies a perturbation that either violently shifts the local attractor, pushes the trajectory entirely outside the locally contractive region, or outright destroys local contraction\. This is consistent with theEqRresidual sticking at∼110\{\\sim\}110\(versus FP∼16\{\\sim\}16\) and the exploding 4\-bit divergence seen in[Figure1](https://arxiv.org/html/2607.16237#S1.F1)\. Under this joint\-contraction model, both components ofs=\(z,y\)s=\(z,y\)should eventually saturate\. Empirically, the latent divergencedtzd^\{z\}\_\{t\}does saturate near270270\. The answer\-logit divergencedtyd^\{y\}\_\{t\}continues climbing through step1616\. This suggests the readout converges more slowly, hasn’t reached its own perturbed fixed point, and acts as an amplifier for the persistent latent bias\.

##### Why a systematic bias is the culprit\.

Letet=stq−stfpe\_\{t\}=s\_\{t\}^\{q\}\-s\_\{t\}^\{\\mathrm\{fp\}\}represent the trajectory error\. The localLL\-contraction ofFθF\_\{\\theta\}provides the strict magnitude bound∥et\+1∥≤L​∥et∥\+∥ϵQ​\(stq,x\)∥\\lVert e\_\{t\+1\}\\rVert\\leq L\\lVert e\_\{t\}\\rVert\+\\lVert\\epsilon\_\{Q\}\(s\_\{t\}^\{q\},x\)\\rVert\. Unrolling this with∥ϵQ∥≤ε\\lVert\\epsilon\_\{Q\}\\rVert\\leq\\varepsilonyields:

∥et∥≲Lt​∥e0∥\+1−Lt1−L​ε→t→∞ε1−L\.\\lVert e\_\{t\}\\rVert\\;\\lesssim\\;L^\{t\}\\lVert e\_\{0\}\\rVert\+\\frac\{1\-L^\{t\}\}\{1\-L\}\\,\\varepsilon\\;\\xrightarrow\[t\\to\\infty\]\{\}\\;\\frac\{\\varepsilon\}\{1\-L\}\.\(6\)This bound fundamentally conflates a coherent bias with a zero\-mean fluctuation\. Both simply contributeε\\varepsilonto the right\-hand side\. The true difference materializes entirely in*expectation*\. If we linearizeFθF\_\{\\theta\}along the trajectory to its JacobianJJ\(∥J∥≤L\\lVert J\\rVert\\leq L\), a coherent mean𝝁Q​\(x\)\\bm\{\\mu\}\_\{Q\}\(x\)forces𝔼​\[et\]→\(I−J\)−1​𝝁Q​\(x\)\\mathbb\{E\}\[e\_\{t\}\]\\to\(I\-J\)^\{\-1\}\\bm\{\\mu\}\_\{Q\}\(x\)\. This carries a magnitude≲∥𝝁Q​\(x\)∥/\(1−L\)\\lesssim\\lVert\\bm\{\\mu\}\_\{Q\}\(x\)\\rVert/\(1\-L\)\. By contrast, a perturbation that is zero\-mean and independent across steps yields𝔼​\[et\]→0\\mathbb\{E\}\[e\_\{t\}\]\\to 0\. Only its variance accumulates to a bounded steady state\.

Because the recursive reasoner repeatedly applies the exact same quantized transition with the exact same parameters, a nonzero𝝁Q​\(x\)\\bm\{\\mu\}\_\{Q\}\(x\)is continuously injected in a consistent direction\. This generates a deterministic displacement\. Zero\-mean fluctuations do not\. This separation in expectation explains why injecting zero\-mean noise at test time fails to rescue Int4 accuracy \([Section5\.3](https://arxiv.org/html/2607.16237#S5.SS3)\)\. It also explains why per\-block scaling is the correct intervention: it shrinks both the magnitudeε\\varepsilonand the systematic bias∥𝝁Q​\(x\)∥\\lVert\\bm\{\\mu\}\_\{Q\}\(x\)\\rVert, pushing the dynamics back into the contraction regime\.

##### Scope\.

[Proposition1](https://arxiv.org/html/2607.16237#Thmproposition1)remains a*conditional local model*\. We do not assert thatTRMorEqRare globally contractive\. The contraction assumption is derived directly from empirical residual decay\. Furthermore, two specific idealizations are present\. First, the Lipschitz bound cannot hold pointwise for a quantizer, soδ\\deltamust be treated as an expected \(smoothed\) sensitivity\. In particular, the literal piecewise\-constant map need not admit an exact fixed point, and its iterates may instead settle into a small cycle\. The empirical plateaus indicate convergence into a small neighborhood, which is what the smoothed model describes\. Second, we do not directly estimateδ\\delta\. We measure the empirical analogues ofε\\varepsilon\(relative error\),LL\(residual decay\), and𝝁Q\\bm\{\\mu\}\_\{Q\}\(layerwise mean\), but the regime splitL\+δ<1L\+\\delta<1is inferred through observed behavioral drift rather than checked mathematically\. We therefore present this model as strong qualitative corroboration rather than a strict quantitative fit\. Formulating a full, non\-idealized nonlinear perturbation theory for discrete reasoners remains exciting future work\.

### A\.12ARC\-AGI transfer: full table

Full pass@2 results supporting[Section4\.6](https://arxiv.org/html/2607.16237#S4.SS6)\. The cross\-architecture summary is also visualized in panel \(c\) of[Figure2](https://arxiv.org/html/2607.16237#S4.F2)\.

Table 4:Both quantization routes transfer to ARC\-AGI\(pass@2\)\. Per\-tensor Int4\-PTQ gives0%0\\%on both datasets, while two independent routes reach the FP\-level point estimate: per\-block scaling at post\-training \(MXInt4, no retraining\) and quantization\-aware training \(naive Int4\-QAT\)\. On ARC\-AGI\-2, 4\-bit MXInt4 matches the FP point estimate and lands above 8\-bit per\-tensor Int8 \(single\-seed, and one ARC\-AGI\-2 task is worth6\.25%6\.25\\%\)\. MX entries use matched linear\-layer coverage\.555Full\-coverage MXFP4 is omitted because it is not coverage\-matched to MXInt4 and so would not be an apples\-to\-apples comparison; both MX entries here use identical matched linear\-layer weight\+activation coverage\.
### A\.13Experimental configuration

##### Datasets and metrics\.

*Sudoku\-Extreme*\(Wanget al\.,[2025](https://arxiv.org/html/2607.16237#bib.bib2); Jolicoeur\-Martineau,[2025](https://arxiv.org/html/2607.16237#bib.bib1)\)comprises hard9×99\\times 9Sudoku puzzles encoded as length\-8181token sequences \(one token per cell\); we evaluate on the full422,786422\{,\}786\-puzzle test split \(models are trained with10001000augmentations per puzzle\)\.*Maze\-Hard*comprises30×3030\\times 30grid mazes \(length\-900900sequences\) that require a valid path from start to goal\. For both,*exact accuracy*is the fraction of test instances solved*completely*correctly \(all8181cells, or the entire path\), whereas*cell accuracy*is the fraction of individual cells/positions correct, a finer\-grained signal that can stay high even when no full solution is produced \(e\.g\. a near\-miss Sudoku grid\)\.*ARC\-AGI\-1*and its harder 2025 successor*ARC\-AGI\-2*are open\-ended abstraction\-and\-reasoning benchmarks of few\-shot grid\-transformation tasks with no fixed output size; following the recursive\-reasoning line of work\(Jolicoeur\-Martineau,[2025](https://arxiv.org/html/2607.16237#bib.bib1)\)we report*pass@2*\(a task counts as solved if either of two attempts, produced by test\-time\-augmentation voting, matches the target\)\. Our ARC\-AGI\-2 evaluation subset is small enough that a single task is worth6\.25%6\.25\\%, so those numbers are read as point estimates rather than a calibrated ordering\.

Unless stated otherwise, results utilize the public Sudoku\-Extreme and Maze\-Hard benchmarks alongsideTRMmodels trained using the publicly released codebase\. \(The tied FP baseline is84\.1%84\.1\\%on Sudoku and84\.7%84\.7\\%on Maze; the untied control FP baseline is69\.8%69\.8\\%on Sudoku\)\.

EqRevaluations use the released Equilibrium Reasoner Sudoku\-Extreme checkpoint\(Huanget al\.,[2026](https://arxiv.org/html/2607.16237#bib.bib6)\)paired with abf16\-consistent fake\-quantizer\. \(This quantizer is FP\-neutral, verified at an accuracy of86\.4%86\.4\\%\)\. The recursion useshalt\_max\_steps=16=16\. The dose–response sweep specifically varies the innerLL\-cycles across\{1,2,4,6,8\}\\\{1,2,4,6,8\\\}\.

##### Quantizer coverage across protocols\.

Per\-step trajectory diagnostics \([Figure1](https://arxiv.org/html/2607.16237#S1.F1)and the dynamic/granularity controls of[Section4\.3](https://arxiv.org/html/2607.16237#S4.SS3)\) quantize the linear layers of the recursive block and keep all other modules in full precision \(single seed\)\. The format ladder of[Table1](https://arxiv.org/html/2607.16237#S4.T1)uses a slightly broader integer coverage with three calibration seeds\. Endpoint accuracies therefore differ slightly between the two protocols \(e\.g\. Sudoku Int884\.2%84\.2\\%in[Figure1](https://arxiv.org/html/2607.16237#S1.F1)vs\.84\.0%±0\.184\.0\\%\\\!\\pm\\\!0\.1in the ladder; Maze per\-tensor Int477\.7%77\.7\\%vs\.73\.5%±0\.473\.5\\%\\\!\\pm\\\!0\.4\)\. Within any one figure or table, coverage is always matched across the formats being compared\.

Quantization is applied via the configuration interface outlined in the released code\. To ensure strict apples\-to\-apples comparisons, the embedding is held in full precision across all evaluated formats\. Per\-block formats utilize a block size of3232combined with a power\-of\-two \(E8M0\) shared scale\. Full hyperparameter configurations, exact random seeds, and comprehensive per\-step logging scripts are provided in the supplementary material\.

Similar Articles

What Survives When You Compress a Recursive Reasoner for the Edge?

arXiv cs.LG

A systematic study of compressing recursive reasoning models for edge hardware finds that aggressive quantization destroys global reasoning while preserving local prediction. The paper introduces per-channel calibrated INT4 to recover reasoning ability and provides deployment recipes fitting 8 MB SoC and 4 MB MCU targets.

Quantized Reasoning Models Think They Need to Think Longer, but They Do Not

arXiv cs.LG

This paper reveals that aggressive post-training quantization of reasoning models leads to increased overthinking errors, where models reach correct intermediate answers but fail to finalize them. A simple logit penalty on overthinking markers reduces chain-of-thought length by 12-23% while improving accuracy, especially for quantized models.

K-Quantization and its Impact on Output Performance

arXiv cs.CL

This paper investigates the impact of different quantization levels (2-bit to 8-bit) on the performance of eight large language models across reasoning, code comprehension, and reading comprehension tasks, finding that while higher precision generally yields better performance, aggressive quantization often retains acceptable accuracy, with larger models showing greater resilience.