SYNTHESIS NOTE
TopicsInference time scalingthis note

Can multiple LLMs coordinate without explicit collaboration rules?

When multiple language models share a concurrent key-value cache, do they spontaneously develop coordination strategies? This matters because it could reveal how reasoning models naturally collaborate and inform more efficient parallel inference.

Synthesis note · 2026-02-23 · sourced from Inference time scaling
How should we spend compute at inference time? How do you navigate synthesis across fragmented research topics?

Existing approaches to parallel LLM inference impose a fixed collaboration strategy: independent sampling with voting, explicit subtask decomposition, or cross-referencing between agents. Each strategy has failure modes — voting wastes compute on stragglers, subtask splitting can't re-plan when the original decomposition is wrong, and cross-referencing requires turn-based exchange that limits interaction speed.

Hogwild! Inference takes a different approach: run multiple LLM instances with the same weights and a shared KV cache. Each worker generates tokens in parallel, and all workers can attend to each other's tokens immediately as they're generated — "instant" cross-attention through a concurrent cache with RoPE-adjusted positional embeddings. No collaboration framework is specified; workers are simply prompted to decide their course of action given what others are doing.

The surprising finding: existing reasoning-capable models (QwQ, DeepSeek-R1) can "reason to coordinate" out of the box, without any fine-tuning for multi-agent collaboration. Workers formulate and follow plans, adapt when plans fail, point out each other's errors, use each other's key observations, and — when prompted to check — can often detect when they're doing redundant work and change strategy.

This is a third mode of parallel inference, distinct from both independent sampling (no interaction) and structured multi-agent debate (turn-based interaction). Shared-memory parallelism enables continuous, real-time coordination rather than discrete message-passing. The human collaboration analogy is apt: humans working together dynamically re-plan, abandon approaches, and build on each other's partial progress — behaviors that fixed strategies cannot accommodate.

The limitation is "often but not always" — workers don't always detect redundancy or coordinate optimally. But the baseline capability exists without training, suggesting that reasoning-capable models already possess the coordination skills needed for shared-memory collaboration.

Inquiring lines that read this note 18

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.

What memory architectures best support persistent reasoning across extended interactions? What coordination failures limit multi-agent LLM systems as they scale? Can AI-generated outputs constitute genuine knowledge or valid claims? How does reasoning graph topology affect breakthrough insights and generalization? Does parallel reasoning outperform sequential thinking under fixed compute budgets? Why should disagreement be treated as signal in collaborative reasoning? Why do reasoning models fail at systematic problem-solving and search? Does decoupling planning from execution improve multi-step reasoning accuracy? What determines success in training models on multiple tasks? What critical LLM failures do standard benchmarks hide? Which computational strategies best support reasoning in language models?

Related concepts in this collection 5

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

Concept map
16 direct connections · 154 in 2-hop network ·dense 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

parallel LLM workers sharing a concurrent KV cache can emergently coordinate without predefined collaboration framework