SYNTHESIS NOTE
TopicsLooped Modelsthis note

Can reasoning systems scale faster by exploring parallel paths instead?

Current recursive reasoning models refine a single latent trajectory deeply, which is slow. Could sampling multiple trajectories in parallel achieve better reasoning with lower latency, and would that scale differently than serial refinement?

Synthesis note · 2026-05-28 · sourced from Looped Models

Recursive Reasoning Models (RRMs) increase reasoning capability by iterating a shared transition function over a latent state — more iterations means more "thinking" without extending the output sequence. This is depth scaling, and it decouples reasoning depth from both parameter count and output length. GRAM (Generative Recursive reAsoning Models) argues this is only half the story: depth alone is insufficient because a single refinement path can become trapped in a suboptimal trajectory, and many problems have ambiguity or multiple valid solutions that a single converging path cannot represent.

The structural claim is that future recursive reasoners should be not only deep (repeated refinement) but also wide (maintaining and exploring multiple latent trajectories in parallel). GRAM operationalizes width by turning the latent transition stochastic and sampling several trajectories simultaneously. Crucially, width sidesteps the latency penalty that depth-only scaling incurs: sampling N trajectories runs in parallel, whereas adding N refinement steps is serial and accumulates wall-clock time.

This reframes the inference-scaling design space for latent architectures. It mirrors at the latent-state level what parallel-vs-sequential debates established at the token level — since Why does parallel reasoning outperform single chain thinking?, breadth often beats depth under a fixed budget because independent paths sample the solution distribution rather than inflating variance along one path. GRAM brings that lesson inside the recurrent block, where prior work like Can models reason without generating visible thinking tokens? had only scaled depth. The counterpoint to watch: since Can parallel architectures solve inherently sequential problems?, width cannot substitute for depth on inherently serial problems — the two axes are complements, not interchangeable knobs. Why it matters: it gives latent reasoning a second, latency-cheap scaling dimension and explains why deterministic RRMs underperform on multi-solution tasks.

Inquiring lines that read this note 141

This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.

How does latent reasoning compare to verbalized chain-of-thought? Can model routing outperform monolithic scaling as an efficiency strategy? How can LLM recommenders match or exceed collaborative filtering performance? When does architectural design matter more than raw model capacity? Why do reasoning models fail at systematic problem-solving and search? Do base models contain latent reasoning that training can unlock? What constrains reinforcement learning's ability to expand model reasoning? Do autonomous architecture discoveries follow predictable scaling laws? Can inference-time compute substitute for scaling up model parameters? Does parallel reasoning outperform sequential thinking under fixed compute budgets? Can model confidence signals reliably improve reasoning quality and calibration? What actually drives chain-of-thought reasoning improvements in language models? How should iterative research systems allocate reasoning per search step? How can identical external performance mask different internal representations? Which computational strategies best support reasoning in language models? How do multi-agent systems achieve genuine cooperation and reasoning? Does recurrence enable reasoning capabilities that fixed-depth transformers cannot achieve? How should inference compute be adaptively allocated based on prompt difficulty? How does policy entropy collapse constrain reasoning-focused reinforcement learning? Why does self-revision increase model confidence while degrading accuracy? How does reasoning graph topology affect breakthrough insights and generalization? Can debate mechanisms prevent silent agreement on wrong answers in multi-agent reasoning? How do training data properties shape reasoning capability development? Why does training format shape reasoning strategy more than domain content? What capability tradeoffs emerge when scaling model reasoning abilities? Why do continual learning scenarios trigger catastrophic forgetting and interference? Does reinforcement learning teach reasoning or just when to reason? How do soft continuous representations explore multiple reasoning paths simultaneously? When do additional thinking tokens stop improving reasoning performance? How can process reward models supervise complex reasoning traces? How should retrieval systems optimize for multi-step reasoning during inference? How does sequence length affect sparsity tolerance in models? Does decoupling planning from execution improve multi-step reasoning accuracy? When does optimizing for quality undermine the value of diversity? How can AI systems learn from failures without cascading errors? Why do correct reasoning traces tend to be shorter than incorrect ones? How do policy learning algorithm choices affect multi-objective optimization stability? What are the consequences of models training on synthetic data?

Related concepts in this collection 4

This note in its neighbourhood — explore the map, then jump to a related concept in the list below.

Concept map
13 direct connections · 114 in 2-hop network ·medium cluster Open in graph ↗

Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph

your link semantically near linked from elsewhere

Related papers in this collection 8

Papers most semantically related to this note, ranked by cosine similarity in the embedding space.

Original note title

reasoning systems should scale in width by sampling parallel latent trajectories not only in depth