LLaDA2.2 targets the real bottleneck in multi-turn agents: decode speed
Direct_Band896 · reddit · 2026-07-25
Decode speed is the hidden tax in agent loops
A Reddit post argues that the real bottleneck in multi-turn agent systems is not tool calls or retries, but raw token-by-token decoding. In agent workflows, the model has to decode repeatedly across planning and tool-use turns, so serial generation compounds both latency and serving cost.
LLaDA2.2 aims at that bottleneck
The post highlights LLaDA2.2, a 100B-class MoE diffusion model built for multi-turn tool use. Instead of locking tokens in place one by one, it decodes blocks and can keep, substitute, delete, or insert tokens mid-decode.
Reported numbers
- About 1.6x average decode throughput vs. its autoregressive sibling
- Up to 2.3x on agent workloads
- Around 703 tokens/sec on the BFCL function-calling set
- Better interactive-agent results than the AR sibling:
- tau2 bench: 80.33 vs 76.36
- MCP Atlas: 46.21 vs 41.12
Caveats
It is not a general reasoning upgrade: the post says it trails the AR sibling on SWE-style benchmarks and general knowledge tasks. It also notes practical deployment limits today: 205.8 GB weights, Apache 2.0, no llama.cpp path, and SGLang support only coming soon.
The core takeaway is that if agent latency is dominated by serial decoding, block-level diffusion decoding is pointed directly at the tax teams are actually paying.
More from coding & agent
- Alex Townsend posts 200 open problems in numerical linear algebra for humans and AI agents — IgorCarron · 2026-09-11
- Kimi K2.8 Preview rolls out: near-K3 coding performance, 1M context for all tiers — teortaxesTex · 2026-09-11
- Looking for a classifier of software engineering task shapes to pick models per task — StewartalsopIII · 2026-09-11
- Steal this idea: prompt-to-hardware where agents assemble custom devices — paraschopra · 2026-09-11
- Model Is the Least Interesting Part: A Guide to Six Core AI Architectures from RAG to Multi-Agent — goyalshaliniuk · 2026-09-11
- Non-coder builds layered memory architecture: 20k tokens tracks a year of agent conversations — matteoianni · 2026-09-11