Robots Learn to 'Think Longer' at Test Time With Latent Reasoning Loops
The last two years of AI progress have hinged on a deceptively simple idea: let a model spend more compute at inference time and it will reason better. That insight powered the "thinking" chatbots that dominated 2024 and 2025. Now a group of robotics researchers wants to bring the same trick to machines that move in the physical world, but without the crippling latency that made chatbot-style reasoning a poor fit for real-time control.
In a paper posted to arXiv on February 8, 2026, titled "Recurrent-Depth VLA: Implicit Test-Time Compute Scaling of Vision-Language-Action Models via Latent Iterative Reasoning," the authors introduce RD-VLA, an architecture that lets a robot policy iterate silently in latent space before it commits to an action. Rather than writing out a chain of reasoning tokens, the model loops an internal representation through a weight-tied module as many times as a task demands, then acts.
The Specifics
Today's vision-language-action (VLA) models, the neural policies that map camera images and language instructions to robot motion, use a fixed computational depth. As the authors put it, they expend "the same amount of compute on simple adjustments and complex multi-step manipulation." One obvious fix, borrowed from large language models, is chain-of-thought prompting: have the model reason in text before acting. But the authors argue that approach "scales memory linearly and is ill-suited for continuous action spaces," where the output is a stream of joint angles rather than discrete words.
RD-VLA takes a different route. It attaches a "recurrent, weight-tied action head that supports arbitrary inference depth with a constant memory footprint." Because the same weights are reused each iteration, the model can think for one loop or twenty without allocating more memory, a sharp contrast to token-based reasoning, which grows its context, and its memory, with every step. Training uses truncated backpropagation through time (TBPTT) to supervise the refinement process efficiently. At inference, the system decides on its own when to stop, using "an adaptive stopping criterion based on latent convergence," meaning it keeps looping until its internal state settles.
The headline result is that this extra thinking matters most exactly where it should. On challenging manipulation tasks, the paper reports that problems which "fail entirely (0 percent success) with single-iteration inference exceed 90 percent success with four iterations," while easy tasks saturate almost immediately. The authors also claim the latent approach delivers "up to 80x inference speedup over prior reasoning-based VLA models," precisely because it avoids generating reasoning tokens one at a time.
The work is credited to Yalcin Tur, Jalal Naghiyev, Haoquan Fang, Wei-Chuan Tsai, Jiafei Duan, Dieter Fox, and Ranjay Krishna, a roster whose senior members are closely associated with robotics and vision research at the University of Washington and NVIDIA. The 11-page paper lists a project page at rd-vla.github.io and has circulated through the ES-Reasoning workshop track tied to ICLR 2026. As with any preprint, the benchmark figures reflect the authors' own reported experiments and have not yet been independently replicated.
Why It Matters
The broader significance is about porting a hard-won lesson from language models into embodied AI. In text, the field learned that scaling test-time compute, letting a model "think longer," often beats simply making the model bigger. But robots operate under a constraint chatbots do not: they act in real time. A manipulation policy that pauses to emit hundreds of reasoning tokens between gripper movements is unusable on real hardware. That mismatch has kept the test-time-compute revolution largely on the language side.
Latent iterative reasoning is a bid to resolve the tension. By doing its deliberation inside a continuous hidden state rather than in written language, RD-VLA gets the adaptivity of "thinking longer" while keeping memory constant and latency low enough to matter. The adaptive stopping criterion is the elegant part: cheap actions get cheap compute, and only the genuinely hard moments, the multi-step, contact-rich manipulations, trigger deeper loops. That is a more principled use of hardware than running every frame at maximum depth.
If the results hold up, the approach also points toward a cleaner architecture for embodied reasoning. Chain-of-thought in robotics has always been an awkward graft, forcing a continuous control problem through a discrete-token bottleneck. A recurrent-depth head sidesteps that entirely, suggesting that the reasoning advances driving frontier LLMs may reach robotics through a fundamentally different mechanism than copy-pasting text-based chain-of-thought.
What to Watch
Several questions will determine whether RD-VLA is a milestone or a promising sketch. First, generalization: the reported 0-to-90 percent jump comes from the authors' chosen tasks, and independent evaluation on standard manipulation benchmarks and real robots will be the real test. Second, the stopping criterion: latent-convergence heuristics can be brittle, and it remains to be seen whether the model reliably knows when it has thought enough, or whether it sometimes stops short on the hardest cases. Third, whether the 80x speedup claim over token-based reasoning survives comparison against the strongest current baselines rather than earlier reasoning VLAs.
More broadly, watch whether latent recurrence becomes the default way embodied models scale test-time compute. The idea has a parallel lineage in language modeling, where recurrent-depth approaches to latent reasoning have been explored as an alternative to verbose chain-of-thought. If robotics converges on the same answer, "thinking longer" could quietly become a standard dial on the next generation of robot policies, one that spins up only when the task gets hard.
"Tasks that fail entirely with single-iteration inference exceed 90 percent success with four iterations, while simpler tasks saturate rapidly."— Tur et al., authors of the RD-VLA paper