Paper deep dive
Think First, Diffuse Fast: Improving Diffusion Language Model Reasoning via Autoregressive Plan Conditioning
Earl J St Sauver
Intelligence
Status: succeeded | Model: Gemma-4-26B-A4B | Prompt: intel-v1 | Confidence: 93%
Last extracted: 7/20/2026, 10:41:15 PM
Summary
The paper introduces 'plan conditioning', a training-free method to improve the multi-step reasoning capabilities of Diffusion Large Language Models (dLLMs). By prepending a short, natural-language reasoning plan generated by an Autoregressive (AR) model to the dLLM's prompt, the diffusion model gains a globally visible scaffold that mitigates its coordination problem. This approach significantly boosts performance on benchmarks like GSM8K and HumanEval, often matching or exceeding AR model performance, while adding minimal latency and cost.
Entities (8)
Relation Signals (8)
Plan Conditioning â appliedto â HumanEval
confidence 95% ¡ On HumanEval, the gain is +12.8pp (37.2% to 50.0%)
Plan Conditioning â appliedto â GSM8K
confidence 95% ¡ On GSM8K, plan conditioning improves LLaDA-8B-Instruct from 75.6% to 87.2%
Plan Conditioning â improves â LLaDA-8B-Instruct
confidence 95% ¡ On GSM8K, plan conditioning improves LLaDA-8B-Instruct from 75.6% to 87.2%
LLaDA-8B-Instruct â istype â Diffusion Large Language Model
confidence 95% ¡ Diffusion large language models (dLLMs) such as LLaDA [Nie et al., 2025]
LLaMA-3.1-8B â istype â Autoregressive Model
confidence 95% ¡ LLaMA 3.1 8B Instruct [Dubey et al., 2024]: AR baseline
Plan Conditioning â uses â claude-sonnet-4.5
confidence 92% ¡ We use a frontier AR model (Claude Sonnet 4.5) to generate a~100-token natural-language plan
Plan Conditioning â mitigates â Coordination Problem
confidence 90% ¡ We hypothesize this gap stems from a coordination problem... Our insight is that the coordination problem can be cheaply alleviated by providing a plan
Hybrid Plan â outperforms â Strategy Plan
confidence 85% ¡ Hybrid plans are consistently best... Hybrid format achieves the highest accuracy on GSM8K, MATH500, and Countdown
Cypher Suggestions (0)
No Cypher suggestions yet.
Abstract
Abstract:Diffusion large language models (dLLMs) generate text via iterative denoising but consistently underperform on multi-step reasoning. We hypothesize this gap stems from a coordination problem: AR models build coherence token-by-token, while diffusion models must coordinate all positions simultaneously. We propose plan conditioning, a training-free method that prepends a short (~100-token) natural-language plan from an AR model to the diffusion model's prompt. The plan serves as a frozen scaffold -- globally visible context that every token position can attend to from the first denoising step. On GSM8K, plan conditioning improves LLaDA-8B-Instruct from 75.6% to 87.2% (+11.6 percentage points), matching a same-size AR model (LLaMA 3.1 8B, 87.7%) despite a 6.4pp weaker baseline. On HumanEval, the gain is +12.8pp (37.2% to 50.0%), showing plans generalize to code. The same plans improve LLaMA by only +5.7pp on GSM8K and +1.3pp on HumanEval -- diffusion models benefit 2-10x more, supporting the coordination-problem hypothesis. Across 5 random seeds, plan-conditioned GSM8K accuracy has zero standard deviation, making diffusion inference highly stable. Ablations reveal the model follows plan strategy (wrong-strategy plans cause -16.3pp) but is robust to plan values (perturbed numbers: -1.1pp), and that planner quality has a sharp threshold: smaller Llama-class plans hurt (-1.6 to -6.8pp) while frontier plans provide the full lift. Attention analysis confirms the mechanism: plan tokens receive 1.8x excess attention during early denoising, declining to uniform as completion tokens solidify. Plan conditioning costs ~$0.002 per problem and adds ~2s of latency.
Tags
Links
- Source: https://arxiv.org/abs/2603.13243v1
- Canonical: https://arxiv.org/abs/2603.13243v1
Trouble viewing inline? Open PDF directly â
Full Text
63,741 characters extracted from source content.
Expand or collapse full text
Think First, Diffuse Fast: Improving Diffusion Language Model Reasoning via Autoregressive Plan Conditioning Earl J. St Sauver Independent Researcher estsauver@gmail.com Abstract Diffusion large language models (dLLMs) generate text via iterative denoising but consistently underperform on multi-step reasoning. We hypothesize this gap stems from a coordination problem: AR models build coherence token-by-token, while diffusion models must coordinate all positions simultaneously. We propose plan conditioning, a training-free method that prepends a short (âź100-token) natural- language plan from an AR model to the diffusion modelâs prompt. The plan serves as a frozen scaffoldâglobally visible context that every token position can attend to from the first denoising step. On GSM8K, plan conditioning improves LLaDA-8B-Instruct from 75.6% to 87.2% (+11.6 percentage points), matching a same-size AR model (LLaMA 3.1 8B, 87.7%) despite a 6.4p weaker baseline. On HumanEval, the gain is +12.8p (37.2% to 50.0%), showing plans generalize to code. The same plans improve LLaMA by only +5.7p on GSM8K and +1.3p on HumanEvalâdiffusion models benefit 2â10x more, supporting the coordination-problem hypothesis. Across 5 random seeds, plan-conditioned GSM8K accuracy has zero standard deviation, making diffusion inference highly stable. Ablations reveal the model follows plan strategy (wrong-strategy plans causeâ16.3p) but is robust to plan values (perturbed numbers:â1.1p), and that planner quality has a sharp threshold: smaller Llama-class plans hurt (â1.6 toâ6.8p) while frontier plans provide the full lift. Attention analysis confirms the mechanism: plan tokens receive 1.8x excess attention during early denoising, declining to uniform as completion tokens solidify. Plan conditioning costsâź$0.002 per problem and addsâź2s of latency. 1 Introduction Diffusion large language models (dLLMs) such as LLaDA [Nie et al., 2025], MDLM [Sahoo et al., 2024], Mercury [Khanna et al., 2025], and Gemini Diffusion [Google DeepMind, 2025] generate text by iteratively denoising a fully masked sequence. Commercial dLLMs already achieve decoding throughputs exceeding 1,000 tokens per second on commodity NVIDIA H100 GPUs [Khanna et al., 2025]âspeeds that autoregressive (AR) models of comparable quality have only matched using specialized accelerators such as Cerebras wafer-scale engines or Groq LPUs. Yet on benchmarks requiring multi-step reasoning, dLLMs consistently trail their AR counterparts [Zhao et al., 2025, Gong et al., 2025]. We argue that this gap is partly a coordination problem. An AR model builds coherence sequen- tially: each token is generated conditioned on every preceding token, so a decision at position 50 directly informs position 51. A diffusion model, by contrast, must coordinate positions 50 and 500 simultaneously. Early denoising steps operate on a nearly random canvas, and global structure only Preprint. Under review. arXiv:2603.13243v1 [cs.AI] 20 Feb 2026 emerges after many refinement steps. For tasks like grade-school math (GSM8K; Cobbe et al., 2021) or constraint puzzles (Countdown; Zhao et al., 2025), where each step depends on the previous result, this parallel-generation bottleneck is acute. Our insight is that the coordination problem can be cheaply alleviated by providing a planâa short, globally visible reasoning structure that is present from the very first denoising step. We use a frontier AR model (Claude Sonnet 4.5) to generate aâź100-token natural-language plan for each problem, then simply prepend it to the dLLMâs prompt. In masked diffusion, these plan tokens are preserved (never masked), so every completion token can attend to them throughout denoising. No architectural changes are required; the plan is âjustâ additional prompt context. Key results. We evaluate plan conditioning on LLaDA-8B-Instruct across five benchmarks and find: â˘On GSM8K, accuracy improves from 75.6% to 87.2% (+11.6p), closing the gap entirely to LLaMA 3.1 8B with plans (87.7%) despite a 6.4p weaker bare baseline. â˘On HumanEval (code generation), plans yield the largest gain: +12.8p (37.2%â50.0%), showing that algorithmic plans generalize beyond math reasoning. ⢠The same plans improve LLaMA by only +5.7p on GSM8K and +1.3p on HumanEvalâ diffusion models benefit 2â10Ămore on these benchmarks, supporting the coordination- problem hypothesis. On Countdown, both architectures benefit identically (+12.1p), suggesting the advantage is task-dependent. ⢠Content ablations show the model follows plan strategy but not plan values: wrong-strategy plans cause catastrophic failure (â16.3p), while perturbed-numbers plans are nearly neutral (â1.1p). â˘A planner quality sweep from 3B to frontier reveals a sharp threshold: Llama-class plans hurt, while Sonnet plans provide the full lift. The model cannot plan for itself (self-planâ baseline, p = 0.86). ⢠Attention analysis confirms the mechanism: plan tokens receive 1.8Ătheir uniform share of attention at the first denoising step, declining to 1.0Ăas completion tokens solidify. The improvement is qualitatively different from extra computeâdoubling denoising steps yields only +3.7p. â˘Plan conditioning eliminates stochastic variance: across 5 random seeds, plan-conditioned GSM8K accuracy is 88.02% with zero standard deviation. Plans make diffusion inference highly stable by providing a fixed scaffold that drives the denoising process to solve the same subset of problems regardless of the random seed. â˘Plan conditioning generalizes to benchmarks from concurrent work [Berrayana et al., 2025]: DART5 (+6.2p) and ARC-Challenge (+3.9p). The planner quality threshold reconciles their finding that small-ARMâDDLM fails with our finding that frontier-ARMâDDLM succeeds. Plan conditioning costsâź$0.002 per problem and addsâź2 s of latency. Contributions. 1.A training-free method for improving dLLM reasoning via AR plan conditioning, with systematic evaluation across 4 plan formats, 8 benchmarks (math, code, constraint puzzles, multiple-choice), and 6 planner configurations spanning 3B to frontier. 2.Evidence that diffusion models benefit disproportionately from plans compared to AR models (2Ăon GSM8K, 10Ăon HumanEval), with task-dependent variation (parity on Countdown), supporting the coordination-problem hypothesis. The largest gain (+12.8p on HumanEval) shows plans generalize to code. 3.Fine-grained ablations decomposing plan content: the model follows plan strategy but is robust to plan values, establishing plan conditioning as genuine reasoning scaffolding rather than a prompt-length artifact. 4. A planner quality scaling law with a sharp threshold, plus robustness analyses (answer leakage, per-difficulty breakdown, error taxonomy) confirming genuine improvement. 2 5.Direct empirical evidence for the frozen scaffold mechanism via attention analysis: plan tokens receive 1.8Ăexcess attention during early denoising, consistent across all transformer layers, providing the first mechanistic confirmation that diffusion models actively read plans when the completion canvas is uninformative. 2 Background Masked diffusion language models. LLaDA [Nie et al., 2025] defines a forward process that randomly masks tokens with probabilityt â [0, 1]and a reverse process that predicts the original tokens from the masked sequence. At inference, the model starts from a fully masked sequence and iteratively unmasks tokens overTsteps. Prompt tokens are preserved throughout (never masked), while completion tokens are fully masked at stept=0and progressively revealed. This architecture enables parallel decoding: all positions are predicted simultaneously at each step. Related architec- tures include MDLM [Sahoo et al., 2024], Dream [Ye et al., 2025], Mercury [Khanna et al., 2025], and Gemini Diffusion [Google DeepMind, 2025]. Reinforcement learning for diffusion LLMs. d1 [Zhao et al., 2025] introduces diffu-GRPO, adapting Group Relative Policy Optimization to masked diffusion. The key challenge is computing token-level log-probabilities when the model generates all tokens simultaneously. d1 uses one-step unmasking from a noise levelt=1to estimate per-token log-probs and applies random prompt masking (p=0.15) for regularization. This enables standard RL training with binary correctness rewards. DiffuCoder [Gong et al., 2025] extends this to code generation with coupled-GRPO. Plan-and-execute paradigms.Decomposing complex tasks into a planning phase and an execution phase has a long history in AI [Fikes and Nilsson, 1971] and has been applied to LLM systems via chain-of-thought [Wei et al., 2022], ReAct [Yao et al., 2023], and Inner Monologue [Huang et al., 2022]. For diffusion models specifically, Planned Diffusion [Israel et al., 2025] uses span segmentation to enable parallel generation across independent chunks, while DDPD [Liu et al., 2025] interleaves planning with token-position-level denoising. Our approach differs in using semantic natural-language plans from an external AR model, targeting reasoning quality rather than generation speed or structural control. 3 Method Our method has three components: plan generation (§3.1), a plan format taxonomy (§3.2), and plan-conditioned inference (§3.3). 3.1 Plan Generation For each benchmark problem, a frontier AR model generates a natural-language plan. We use Claude Sonnet 4.5 [Anthropic, 2025] as the default planner, Claude Haiku 4.5 as a cheaper alternative, and evaluate several additional planners in §4.6: Llama 3.1 8B and Llama 3.2 3B (open-weight AR models) and LLaDA itself in a two-pass self-planning configuration. Plans are generated with temperature 0.3 and a strict token budget (default: 100 tokens). Each plan is cached as JSONL, so the marginal cost at inference time is zeroâthe plan generation cost is amortized across all experiments that use the same plan cache. The planner receives the problem statement and a format-specific system prompt (see §3.2) but never sees the ground-truth answer. This ensures the plan reflects genuine reasoning about the problem rather than answer memorization. 3.2 Plan Format Taxonomy We evaluate four plan formats, each providing a different type of guidance: The formats vary in information density: Strategy plans are abstract but concise; Constraints plans are specific but lack procedural structure; Hybrid plans combine both. We hypothesize that Hybrid plans are optimal because they provide both strategic framing (what to do) and numeric anchors (what values matter)âgiving the diffusion model both a global roadmap and concrete checkpoints. 3 FormatDescriptionExample snippet StrategyHigh-level approach in 1â2 sentencesâCalculate daily production, subtract con- sumed, find remainingâ OutlineStep-by-step procedure without computing answers âStep 1: Identify total chickens. Step 2: . . . â ConstraintsKey facts, pitfalls, expected answer formâDaily production: 16 eggs. Pitfall: donât double-count. . . â HybridStrategy sentence + key constraintsâTrack eggs through pipeline. Key: 16/day produced, 3/day consumed. . . â Table 1: Plan format taxonomy. Each format provides different guidance density per token. Hybrid combines high-level strategy with specific numeric anchors. 3.3 Plan-Conditioned Inference Plan conditioning requires no architectural changes. The plan is simply prepended to the diffusion modelâs prompt: system_prompt problem Plan: plan : In masked diffusion, the concatenated prompt (system prompt + problem + plan + âSolution:â marker) is treated as preserved tokensâthey are never masked during inference. Completion tokens after the marker are fully masked at initialization and progressively denoised. The plan thus functions as a frozen scaffold: globally visible, immutable context that every completion token can attend to from the first denoising step via the modelâs bidirectional attention. This is in contrast to AR models, where plan tokens are processed sequentially and only influence subsequent tokens via the causal attention mask. The bidirectional attention in diffusion models means every completion position has equal access to every plan tokenâa structural advantage that may explain why diffusion models benefit more from plans (§4.3). Distinction from chain-of-thought. We use the term âplan conditioningâ rather than âchain-of- thoughtâ to emphasize two key distinctions. First, the plan is generated by an external model (the planner) before the executor begins generation, whereas chain-of-thought reasoning is produced by the same model during generation. Second, the plan is frozen throughout the diffusion process: plan tokens are never masked and remain fixed across all denoising steps, functioning as a static conditioning signal rather than an evolving reasoning trace. These distinctions matter: the plan provides a structural scaffold from an external, more capable reasoner, enabling the diffusion model to coordinate its parallel generation around a fixed reference point rather than discovering coherent reasoning on its own. 4 Experiments 4.1 Setup Models. We evaluate three models: ⢠LLaDA-8B-Instruct [Nie et al., 2025]: Masked diffusion LLM, 8B parameters, bf16 precision. Inference on 1ĂA100 80GB with 64 denoising steps. ⢠LLaMA 3.1 8B Instruct [Dubey et al., 2024]: AR baseline of comparable size, accessed via OpenRouter API. Both models use identical plan caches for direct comparison. Benchmarks. We evaluate on five tasks spanning arithmetic reasoning, mathematical problem- solving, code generation, and constraint satisfaction: ⢠GSM8K [Cobbe et al., 2021]: 1,319 grade-school math word problems. Multi-step arith- metic requiring 2â8 sequential operations. 4 GSM8KMATH500HumanEvalCountdown 0 20 40 60 80 100 Accuracy (%) 75.6 35.8 37.2 19.1 87.2 41.8 50.0 31.3 82.0 43.0 45.7 19.1 87.7 49.6 47.0 31.2 +11.6 +5.7 LLaDA bare LLaDA + plan LLaMA bare LLaMA + plan Figure 1: Accuracy across benchmarks and modelâcondition pairs. On GSM8K, plan conditioning improves LLaDA by +11.6p (vs. +5.7p for LLaMA with the same plans), closing the diffusionâ AR gap entirely. HumanEval shows the largest diffusion advantage: LLaDA gains +12.8p while LLaMA gains only +1.3p. On Countdown, both architectures start at identical baselines and benefit identically (+12.1p). â˘MATH500 [Lightman et al., 2023]: A 500-problem representative subset of the MATH dataset [Hendrycks et al., 2021], spanning competition-level problems across seven topics including algebra, geometry, and number theory. ⢠HumanEval [Chen et al., 2021]: 164 Python programming problems with unit test suites. Tests algorithmic reasoning and code synthesis. â˘Countdown [Zhao et al., 2025]: 256 constraint puzzles requiring combining three numbers with arithmetic to reach a target. Tests combinatorial search. ⢠Sudoku 4Ă4 [Zhao et al., 2025]: 2,048 puzzles testing spatial constraint propagation. Included as an expected negative control. We additionally evaluate on three benchmarks from Berrayana et al. [2025]âDART5, ARC- Challenge, and AIME24âin §5.9 to test generalization. Plan generation.Claude Sonnet 4.5 generates plans with temperature 0.3 and a 100-token budget (varied in §4.4). Claude Haiku 4.5 is used as a cheaper alternative in §4.6. 4.2 Main Results: Plan Conditioning Sweep Figure 1 summarizes our main results; Table 2 reports LLaDA accuracy across all plan formats at two generation lengths (128 and 256 tokens). Hybrid plans are consistently best.The heatmap in Figure 2 visualizes plan effectiveness across all formatâbenchmark combinations. Hybrid format achieves the highest accuracy on GSM8K, MATH500, and Countdown at generation length 256. This confirms the hypothesis that combining strategic framing with numeric anchors is more effective than either alone. Strategy plans (abstract, no numbers) and Constraints plans (specific, no procedure) each capture only part of what the diffusion model needs. Plans interact positively with generation length. The plan benefit is consistently larger at gen = 256 than gen = 128. On GSM8K, the hybrid lift is +13.0p at 128 tokens but +11.6p at 256 (from a higher baseline). This suggests plans and additional generation budget are comple- 5 BenchmarkBaselineStrategyOutlineConstraintsHybridBestâ 128 / 256128 / 256128 / 256128 / 256128 / 256 GSM8K69.0 / 75.677.7 / 85.778.2 / 84.976.8 / 86.082.0 / 87.2+11.6 MATH50027.4 / 35.830.6 / 37.434.4 / 36.630.0 / 37.632.6 / 41.8+6.0 HumanEval25.0 / 37.232.3 / 50.042.1 / 48.828.0 / 36.032.9 / 48.2+12.8 Countdown21.1 / 19.129.7 / 28.518.4 / 21.522.3 / 14.528.1 / 31.2+12.1 Sudoku11.6 / 6.95.7 / 7.96.3 / 6.17.3 / 7.77.2 / 6.2+1.0 Table 2: LLaDA-8B accuracy (%) by plan format and generation length. Bold indicates best per row. Baseline values are at generation lengths 128/256;âis computed from the 256-token baseline. Hybrid plans win on 3/5 benchmarks at gen-256; strategy wins on HumanEval and Sudoku. Strategy OutlineConstraintsHybrid GSM8K MATH500 Countdown Sudoku +10.1+9.3+10.4+11.6 +1.6+0.8+1.8+6.0 +9.4+2.4-4.6+12.1 +1.0-0.8+0.8-0.7 Plan format effectiveness (gen=256) 10 5 0 5 10 Accuracy (p) Figure 2: Accuracy improvement (p) over baseline by plan format and benchmark at generation length 256. Hybrid plans (rightmost column) dominate on 3/4 benchmarks. Sudoku (bottom row) shows near-zero or negative deltas across all formatsâplans do not help spatial constraint propagation. The blue cell (CountdownâConstraints,â4.6p) shows that constraint-only plans hurt when they lack procedural structure. mentary, not substitutiveâthe plan provides structure, and longer generation provides room to execute. HumanEval: largest improvement, different format preference. Code generation shows the strongest response to plan conditioning: +12.8p (37.2%â50.0%, pass@1, strategy format). Unlike math benchmarks where hybrid plans dominate, HumanEval favors strategy (+12.8p) and outline (+11.6p) over hybrid (+11.0p), while constraints actively hurt (â1.2p). We attribute this to the natural alignment between focused algorithmic guidance and code structure: the plan specifies the algorithm (e.g., âuse nested loops to check all triplesâ), and the diffusion model fills in correct syntaxâ a well-defined division of labor. Constraint-only plans fail because listing edge cases provides no constructive algorithmic guidance. For math, the plan provides strategy but the model must still execute arithmetic correctly; for code, the dominant failure mode (choosing the wrong algorithm) is exactly what strategy plans address. Sudoku: a useful negative result. Plans hurt Sudoku by up toâ5.9p. Sudoku requires spatial constraint propagationâtracking which digits appear in which rows, columns, and boxes. Natural- language plans cannot concisely encode this spatial reasoning, and the plan tokens consume budget that would otherwise be available for the solution. This confirms that plan conditioning is most effective for tasks where sequential reasoning chains are the bottleneck. 6 ConditionLLaMA 3.1 8B (AR)LLaDA-8B (Diffusion) GSM8K Bare82.075.6 + Sonnet plan87.7 (+5.7)87.2 (+11.6) + Haiku plan84.9 (+2.9)82.3 (+6.7) MATH500 Bare43.035.8 + Sonnet plan49.6 (+6.6)41.8 (+6.0) + Haiku plan48.2 (+5.2)34.4 (â1.4) HumanEval Bare45.737.2 + Sonnet plan47.0 (+1.3)50.0 (+12.8) Countdown Bare19.119.1 + Sonnet plan31.2 (+12.1)31.2 (+12.1) Table 3: AR vs. diffusion comparison. Accuracy (%) with per-condition lift in parentheses. On GSM8K, LLaDA benefits 2Ămore from Sonnet plans than LLaMA (+11.6 vs. +5.7p). On Count- down, both architectures benefit identically (+12.1p). On HumanEval, the diffusion advantage is largest: LLaDA gains +12.8p while LLaMA gains only +1.3p. 4.3 AR vs. Diffusion: Do Plans Help Diffusion More? To test whether plan conditioning addresses a diffusion-specific limitation, we evaluate the same plans on an AR model of comparable size (Figure 1, Table 3). Diffusion benefits 2Ămore on GSM8K.With identical Sonnet plans, LLaDA gains +11.6p while LLaMA gains +5.7p. This 2:1 ratio supports the coordination-problem hypothesis: plans provide globally visible structure that partially compensates for the lack of sequential token dependencies in diffusion models, whereas AR models already build coherence incrementally and benefit less from external scaffolding. Relative error reduction confirms the advantage.To account for the different baselines, we also report relative error reduction. Plan conditioning reduces LLaDAâs error rate from 24.4% to 12.8% (47.5% relative reduction), compared to LLaMAâs error rate from 18.0% to 12.3% (31.7% relative reduction). The diffusion modelâs advantage persists under this more conservative metricâa 1.5Ă ratio in relative error reduction compared to the 2.0Ăratio in raw percentage-point gainâsuggesting the benefit is not solely an artifact of the lower baseline. Controlling for baseline capability. To disentangle architectural effects from capability effects, we evaluate a quantized autoregressive baseline: LLaMA 3.1 8B Instruct at 3-bit precision (GGUF Q3_K_S viallama-cpp-python), which scores 73.2% on GSM8Kâclose to LLaDAâs 75.6% baseline. (Approximately 5% of plan-conditioned generations from the quantized model exhibited repetition artifacts, likely a consequence of the aggressive quantization; this depresses the reported plan lift but does not affect bare accuracy.) With Sonnet plans, this quantized AR model achieves 80.3% (+7.1p, 26.5% relative error reduction). Despite a nearly matched baseline, the diffusion model achieves substantially higher error reduction (47.5% vs. 26.5%)âa 1.8Ăratio that persists even accounting for the repetition artifacts in the AR baseline. Combined with the full-precision comparison (LLaMA FP16: 82.0%â87.7%, 31.7% error reduction), these results suggest that while baseline capability partially explains the raw lift (weaker models benefit more from plans), diffusion models exhibit a genuine architectural advantage in leveraging plan conditioning. Plans close the diffusionâAR gap.At baseline, LLaDA trails LLaMA by 6.4p on GSM8K (75.6% vs. 82.0%). With Sonnet plans, this gap shrinks to 0.5p (87.2% vs. 87.7%). The plan effectively equalizes the two architectures on this benchmark. 7 Plan BudgetGSM8KCountdown AccuracyLiftAccuracyLift 0 (bare)75.6â19.1â 25 tokens79.5+3.917.6â1.5 50 tokens83.0+7.416.8â2.3 100 tokens87.2+11.631.2+12.1 150 tokens88.0+12.439.5+20.4 200 tokens87.7+12.139.5+20.4 Table 4: LLaDA accuracy (%) by plan token budget (hybrid format). GSM8K shows smooth saturation with diminishing returns past 100 tokens. Countdown exhibits a sharp performance threshold: plans hurt at 25â50 tokens, then jump +14.5p from 50â100. Both benchmarks plateau by 150â200 tokens. 02550100150200 Plan budget (tokens) 70 75 80 85 90 Accuracy (%) saturation GSM8K 02550100150200 Plan budget (tokens) 10 15 20 25 30 35 40 45 Accuracy (%) performance threshold Countdown Figure 3: LLaDA accuracy vs. plan token budget (hybrid format). Left: GSM8K shows smooth saturation with diminishing returns past 100 tokens. Right: Countdown exhibits a sharp performance thresholdâplans hurt at 25â50 tokens, then jump +14.5p from 50â100. Dashed line marks the no-plan baseline. MATH500 and Countdown: parity, not dominance.On MATH500, both models benefit roughly equally (+6.0p vs. +6.6p with Sonnet plans). On Countdown, the parity is even more striking: both models start at identical baselines (19.1%) and reach identical endpoints (31.2%) with identical lifts (+12.1p). These benchmarks suggest that plan conditioning is not inherently diffusion-specificâ it provides equivalent scaffolding to both architectures when the task and baseline capability are matched. The diffusion-specific 2Ăadvantage on GSM8K and the 10Ăadvantage on HumanEval (+12.8p vs. +1.3p) emerge specifically on tasks where sequential multi-step reasoning is the primary challenge and LLaMAâs stronger bare performance leaves less headroom for improvement. 4.4 Plan Budget Ablation We vary the plan token budget from 25 to 200 tokens (hybrid format) on GSM8K and Countdown (Figure 3). GSM8K: smooth saturation. Returns diminish sharply past 100 tokens: adding 50 more (100â150) yields only +0.8p, and 200 tokens actually drops slightly (87.7% vs. 88.0%). Even 25 to- kens helps meaningfully (+3.9p), confirming that high-level strategic framing has value independent of detail. Countdown: performance threshold. Plans hurt at budgets of 25â50 tokens (â1.5p,â2.3p), then jump +14.5p from 50â100. This suggests a minimum plan complexity threshold: Count- downâs combinatorial search requires plans that specify both the target decomposition strategy and 8 CategoryAccuracy (%)N No leakage (answer absent from plan)80.11,022 False-positive leak (answer already in problem)83.585 True leakage (answer new in plan)88.7212 Baseline (no plan)75.61,319 Table 5: Leakage decomposition for GSM8K hybrid plans (N =1,319). âFalse-positive leakâ denotes problems where the answer number already appears in the problem text (e.g., â20 chickensâ when the answer is 20), so its presence in the plan is not informative. Even excluding all leaked problems, accuracy exceeds the baseline by +4.5p. Maximum leakage contribution: 1.4p out of 11.6p (12%). Note: per-category accuracies are from the gen=128 ablation run (overall 82.0%); the qualitative conclusionâthat leakage accounts for at mostâź12% of the liftâholds for the gen=256 run (87.2%) as well. PlannerGSM8KMATH500CountdownCost/plan None (baseline)75.635.819.1$0 LLaDA self-plan74.9 (â0.7)â$0 Llama 3.2 3B68.8 (â6.8)30.0 (â5.8)16.4 (â2.7)$0.00005 Llama 3.1 8B74.0 (â1.6)31.6 (â4.2)13.3 (â5.8)$0.0001 Haiku 4.582.3 (+6.7)34.4 (â1.4)24.2 (+5.1)$0.0006 Sonnet 4.587.2 (+11.6)41.8 (+6.0)31.2 (+12.1)$0.002 Table 6: LLaDA accuracy (%) by planner capability. Plan quality has a sharp threshold: below Haiku-class capability, plans hurt across all benchmarks. intermediate values. Below this threshold, partial plans are worse than no planâthey constrain the search without providing enough structure to compensate. Implications. The optimal budget depends on task complexity. For routine multi-step arithmetic (GSM8K), even a single strategic sentence helps. For combinatorial problems (Countdown), plans need to cross a complexity threshold before they become useful. In practice, 100 tokens is a robust default that works across both regimes. 4.5 Answer Leakage Analysis A potential confounder: do plans improve accuracy simply by leaking the answer? We decompose GSM8K hybrid plans by whether they contain any numeric value matching the ground-truth answer. Non-leaked accuracy (80.1%) exceeds the baseline (75.6%) by +4.5p, confirming that the improve- ment is predominantly genuine. The maximum possible leakage contribution is 1.4pâat most 12% of the total +11.6p lift. Moreover, no plans contain the format used for final answers; any numeric overlap is incidental (intermediate computations that happen to match the final answer). 4.6 Planner Quality Scaling To test how plan quality affects downstream performance, we evaluate planners spanning 60Ăin capability: Llama 3.2 3B, Llama 3.1 8B (via Together API), Claude Haiku 4.5, and Claude Sonnet 4.5. We also test LLaDA planning for itself in a two-pass setup (self-plan). A sharp quality threshold. The transition from harmful to helpful plans occurs between Llama- 8B-class and Haiku-class planners (Figure 4). Both Llama planners reduce accuracy below the no-plan baseline on GSM8K: Llama 3B drops accuracy byâ6.8p and Llama 8B byâ1.6p. These low-quality plans behave similarly to mismatched plans from our content ablation (§5.3)âthe model follows their guidance, but the guidance is wrong. Self-plans are useless. LLaDA planning for itself in a two-pass setup (generate plan, then solve conditioned on plan) yields accuracy indistinguishable from baseline (74.9% vs. 75.6%, McNemar 9 Self-plan (LLaDA 8B) Llama 3.2 3B Llama 3.1 8B No plan (baseline) Haiku 4.5 Sonnet 4.5 60 65 70 75 80 85 90 Accuracy (%) GSM8K 74.9% 68.8% 74.0% 75.6% 82.3% 87.2% quality cliff Planner capability vs. downstream accuracy Figure 4: GSM8K accuracy by planner capability. There is a sharp quality cliff between Haiku (helpful, +6.7p) and Llama 8B (marginally harmful,â1.6p). Self-plans (LLaDA planning for itself) are indistinguishable from no plan. BenchmarkRescue rate (hard)Retention rate (easy)Fix:Break ratio GSM8K71.4%92.3%3.0:1 MATH50021.5%78.2%1.8:1 Countdown28.0%44.9%2.1:1 Table 7: Per-difficulty analysis of hybrid plan conditioning. âRescue rateâ is the fraction of baseline- incorrect problems that plans fix; âretention rateâ is the fraction of baseline-correct problems that remain correct. Plans are not a free lunch: they break 8â55% of previously correct answers, but fix even more. p = 0.86 ). The planner must be substantially more capable than the executor; the model cannot bootstrap its own reasoning. Haiku plans recover partial lift. On GSM8K, Haiku achieves 58% of Sonnetâs lift (+6.7p vs. +11.6p) atâź3Ălower cost. On Countdown, recovery is 42%. However, Haiku plans hurt MATH500 (â1.4p), while LLaMA gains +5.2p from the same Haiku plansâdiffusion models are more plan-quality-sensitive than AR models because bidirectional attention amplifies both signal and noise globally. 5 Analysis 5.1 Per-Difficulty Breakdown We partition problems by baseline difficulty (whether LLaDA solves them without a plan) and analyze how plans redistribute successes and failures. Plans are not a free lunchâthey break 8â55% of previously correct answers. The net improvement comes because they fix even more: a 3.0:1 fix:break ratio on GSM8K. The high rescue rate on GSM8K (71.4%) reflects the uniformity of that benchmark: multi-step word problems have similar structure, so a plan that works for one problem generalizes well. MATH500âs lower rescue rate (21.5%) reflects its diversityâalgebra and geometry require fundamentally different plan structures. 5.2 Error Taxonomy We manually classify 169 GSM8K hybrid failures: 10 CategoryCount% of failures Execution error (right plan, wrong math)10059.2 Format failure (right answer, wrong format)3118.3 Plan wrong (plan misled the model)2716.0 No answer extracted116.5 Table 8: Error taxonomy for 169 GSM8K hybrid failures. The dominant failure mode (59%) is execution error: the plan is correct but the model makes arithmetic mistakes. Zero failures were classified as âplan ignored.â ConditionGSM8K (%)âWhat it tests Wrong strategy59.3â16.3Incorrect mathematical approach Mismatched plan71.0â4.6Plan for a different problem Perturbed numbers74.5â1.1Correct strategy, wrong values Baseline (no plan)75.6â Random tokens78.2+2.6Token count only Shuffled plan80.0+4.4Vocabulary preserved Real plan (Sonnet)86.9 â +11.3Full plan Table 9: Plan quality spectrum on GSM8K. The model follows plan strategy (wrong strategy: â16.3p) but is robust to plan values (perturbed numbers:â1.1p). 61% of the improvement comes from semantic content; 23% from extra tokens; 16% from domain vocabulary. â The âreal planâ control in this ablation run scored 86.9% vs. 87.2% in the main sweep (Table 2); the 0.3p difference reflects single-seed variance. The most striking finding: zero âplan-ignoredâ failures. The diffusion model always attends to and follows the plan. The dominant failure mode (59%) is execution errorâthe plan provides the correct strategy but the model makes arithmetic mistakes during generation. This identifies the remaining bottleneck: the executorâs mathematical capability, not its ability to utilize plans. Format failures (18%) suggest additional gains from better formatting instructions. 5.3 What Do Plans Encode? We combine two ablation experiments to construct a full plan quality spectrum, decomposing exactly which aspects of plan content drive the improvement. Strategy matters, values donât.Perturbed-numbers plansâwhere the correct structure and strategy are preserved but numerical values are randomly alteredâperform nearly identically to baseline (â1.1p, Table 9). The model does not copy intermediate values from the plan. In contrast, wrong- strategy plansâwhere the mathematical approach is plausible but incorrectâcause catastrophic failure (â16.3p), the worst condition tested. The model genuinely follows the planâs reasoning approach. Content decomposition. The improvement decomposes cleanly: random tokens provide +2.6p (23%, from extra context), shuffled plans add +1.8p more (16%, from domain vocabulary), and semantic structure provides the remaining +6.9p (61%). Mismatched plansâcorrect structure but wrong problemâhurt byâ4.6p, confirming the model attends to plan content bidirectionally: relevant plans help, irrelevant plans actively mislead. Implications. The bidirectional sensitivity to plan content rules out the âpadding hypothesisâ (that plans help merely by adding tokens) and establishes plan conditioning as genuine reasoning scaffolding. The strategy/value dissociation suggests an effective division of labor: the AR planner provides the what to do, and the diffusion model handles the how to compute. 5.4 Why Plans Help Diffusion More Than AR The 2Ălift asymmetry on GSM8K has a natural explanation in the attention structure of the two architectures: 11 Wrong strategy Mismatched plan Perturbed numbers Baseline (no plan) Random tokens Shuffled plan Real plan (Sonnet) 50 60 70 80 90 Accuracy (%) 59.3% 71.0% 74.5% 75.6% 78.2% 80.0% 86.9% -16.3p -4.6p -1.1p +2.6p +4.4p +11.3p strategy matters (16.3p) values don't (1.1p) Plan quality spectrum (GSM8K) Figure 5: Plan quality spectrum on GSM8K. Wrong-strategy plans cause catastrophic failure (â16.3p), while perturbed-numbers plans are nearly neutral (â1.1p). The model follows the planâs reasoning approach but computes its own values. â˘AR models build coherence incrementally. Tokennconditions on tokens1, . . . , nâ1via causal attention. The model constructs an implicit plan through the chain of previous tokens. An explicit plan helps, but the model already has a coherence-building mechanism. â˘Diffusion models denoise all positions simultaneously. In early denoising steps, completion tokens attend to a near-random canvas. A plan provides globally visible structure from step 1âa fixed point that all positions can coordinate around, substituting for the sequential dependency chain that AR models build naturally. The budget ablation further supports this: even 25 tokens of strategic framing helps GSM8K by +3.9p, because the value is in global visibility, not in detailed instructions. The plan doesnât need to specify every stepâit needs to provide enough structure that parallel positions can coordinate. On MATH500 and Countdown, the diffusion advantage disappears: both architectures benefit equally (+6.0p vs. +6.6p on MATH500; identical +12.1p on Countdown). The Countdown result is particularly informative: both models start at identical baselines (19.1%) and reach identical end- points (31.2%), ruling out a headroom explanation. Instead, Countdownâs combinatorial search structureâwhere the bottleneck is exploring valid number combinations rather than maintaining sequential coherenceâappears to benefit equally from plan scaffolding regardless of whether genera- tion is parallel or sequential. The diffusion-specific advantage on GSM8K and HumanEval emerges specifically on tasks where sequential multi-step reasoning is the primary challenge: here, AR models already build coherence incrementally and benefit less from external scaffolding, while diffusion models gain disproportionately because plans substitute for their missing sequential dependency chain. 5.5 Why Plans Hurt Sudoku Sudoku requires spatial constraint propagationâtracking which digits appear in each row, column, and2Ă2box. This form of reasoning does not decompose into a sequential chain that benefits from strategic framing. Natural-language plans for Sudoku tend to be either too vague (âuse elimination strategyâ) or too verbose (listing all constraint violations), consuming sequence budget without providing actionable structure for the denoising process. This confirms that plan conditioning is most effective for tasks where the bottleneck is sequential multi-step reasoning, not spatial or combinatorial constraint satisfaction. 12 0102030405060 Denoising step t 0.0 0.2 0.4 0.6 0.8 1.0 Attention fraction 43% 25% (a) Completion region attention Plan (111 tok) Problem (96 tok) Completion (256 tok) Uniform plan share (24%) 0102030405060 Denoising step t 0.8 1.0 1.2 1.4 1.6 1.8 2.0 Plan attention / uniform 1.8Ă (b) Excess plan attention Excess plan attention Uniform baseline 048121620242831 Layer 0.000 0.001 0.002 0.003 0.004 0.005 Attn to plan (c) Per-layer plan attention Step 0 (early) Step 32 (mid) Step 63 (late) Figure 6: Attention from completion tokens to sequence regions across denoising steps. (a) Plan tokens receive 43% of attention at step 0 despite comprising only 24% of the sequence (dotted line = uniform baseline). By step 63, attention converges to near-uniform. (b) Excess plan attention (ratio over uniform) is 1.8Ăat step 0, declining smoothly to 1.0Ă. (c) The effect is consistent across all layers; early layers (layer 0) show the strongest absolute attention to plans. 5.6 Attention Analysis: The Frozen Scaffold in Action The preceding analysis argues that plans serve as a âfrozen scaffoldââglobally visible context that completion tokens coordinate around during denoising. We now provide direct empirical evidence by extracting attention maps from LLaDA during plan-conditioned generation. Setup. We extract attention weights at 17 denoising steps (every 4 steps across 64 total) and 9 transformer layers (sampled uniformly from 0 to 31) for 10 GSM8K problems. For each (step, layer) pair, we compute the fraction of attention from completion tokens directed to plan tokens, problem tokens, and other completion tokens, then normalize and average across layers and problems. Plans dominate attention at early denoising steps. At step 0, when the completion canvas is fully masked, plan tokens receive 42.6% of attention despite comprising only 24.0% of the total sequenceâ1.8Ăthe uniform baseline (Figure 6a,b). Completion tokens, which make up 55% of the sequence, receive only 26.8% of attention. As denoising progresses and completion tokens solidify, attention naturally redistributes: by step 63, plan attention drops to 25.2% (1.05Ăuniform) while completion attention rises to 46.9%. The effect is consistent across all layers. Every sampled layer shows higher plan attention at step 0 than step 63, with early-to-late ratios ranging from 1.7Ă(layer 4) to 2.4Ă(layer 0), averaging 2.1Ăacross all 9 layers (Figure 6c). This rules out the hypothesis that a few specialized heads drive the effectâthe entire network engages with the plan during early denoising. Interpretation. The attention data directly confirms the frozen scaffold mechanism. When the completion canvas is uninformative (fully masked), completion tokens preferentially attend to the planâthe only coherent signal available. As denoising reveals informative completion tokens, attention equilibrates. This is exactly the coordination mechanism hypothesized in §5.4: the plan provides a globally visible reference point that substitutes for the sequential dependency chain in AR models. The model reads plans indiscriminately.To test whether attention discriminates between helpful and harmful plans, we repeat the analysis across four plan conditions: Sonnet plans (+11.6p on GSM8K), Llama 3B plans (â7.2p), wrong-strategy plans (â16.1p), and random tokens (+2.6p). All conditions receive excess attention during early denoising (Figure 7): Sonnet plans receive 1.80Ă uniform, Llama 3B 1.67Ă, wrong-strategy 1.51Ă, and random tokens 1.33Ă. The model attends to any prepended content more than completion tokens during early steps, with the magnitude scaling with coherence (Sonnet>Llama>wrong>random) but not with downstream helpfulness. This explains why wrong-strategy plans are catastrophic: the model faithfully reads and follows them, but the guidance is wrong. Quality discrimination occurs downstream in the computation, not at the attention allocation level. 13 0102030405060 Denoising step t 0.8 1.0 1.2 1.4 1.6 1.8 2.0 Plan attention / uniform (a) Excess plan attention by condition Sonnet plan (+11.6p) Llama-3B plan (-7.2p) Wrong strategy (-16.1p) Random tokens (+2.7p) Uniform baseline Sonnet plan Llama-3B plan Wrong strategy Random tokens 0.8 1.0 1.2 1.4 1.6 1.8 2.0 2.2 Excess attention at step 0 1.80Ă (+11.6p) 1.67Ă (-7.2p) 1.51Ă (-16.1p) 1.33Ă (+2.7p) (b) Step-0 excess by condition Figure 7: Excess plan attention across plan quality conditions. (a) All conditions show elevated plan attention during early denoising, declining toward uniform. (b) Step-0 excess attention scales with plan coherence (Sonnet>Llama 3B>wrong strategy>random) but not with downstream accuracy impact. The model reads plans indiscriminately; quality discrimination is downstream. ConditionGSM8KMATH500Rel. FLOPs Baseline (gen=256, steps=128)75.635.81.0Ă Longer gen (gen=384, steps=192)78.9 (+3.3)34.4 (â1.4)âź1.5Ă More steps (gen=256, steps=256)79.3 (+3.7)34.4 (â1.4)âź2.0Ă Plan conditioning87.2 (+11.6)41.8 (+6.0)âź1.0Ă * Table 10: Plan conditioning vs. compute-matched controls. Doubling denoising steps or increasing generation length 50% yields modest GSM8K gains (+3â4p) and hurts MATH500. Plan conditioning provides 3â4Ămore improvement at negligible additional diffusion FLOPs. * Plan generation is external; diffusion FLOPs are unchanged. 5.7 Plans vs. Extra Compute A natural objection is that plans improve accuracy simply by providing âmore computeââafter all, plan tokens extend the prompt. We test this by giving the baseline model equivalent or greater additional compute through two controls: (1) 50% longer generation (384 vs. 256 tokens, which also increases steps proportionally), and (2) 2Ămore denoising steps at the same generation length (256 vs. 128 steps). On GSM8K, longer generation yields +3.3p and more steps +3.7pâplan conditioning provides 3â 4Ămore improvement (Table 10). On MATH500, both compute controls slightly decrease accuracy (â1.4p each), while plans increase it by +6.0p. The effect of plans is qualitatively different from additional compute: plans provide structured reasoning that more tokens or more refinement cannot discover. This confirms that the planâs value is informational, not computational. 5.8 Statistical Robustness Diffusion inference is inherently stochastic: the remasking schedule introduces variance across random seeds. To quantify this and establish statistical significance, we evaluate 5 random seeds (42, 123, 456, 789, 1337) across three benchmarks under both baseline and plan-conditioned settings (Table 11, Figure 8). We use hybrid plans at budget 150 for GSM8K and Countdown (budget 100 for MATH500). Baseline variance is negligible for structured tasks. GSM8K baseline standard deviation is just Âą0.15p across 5 seedsâindividual runs are highly representative. MATH500 is even more stable (Âą0.08p). Countdown shows higher variance (Âą1.01p), consistent with its combinatorial search nature where small remasking differences can flip near-threshold solutions. 14 BenchmarkBaseline+ Sonnet planâ GSM8K75.51Âą 0.1588.02Âą 0.00+12.5 MATH50035.76Âą 0.0841.52Âą 0.56+5.8 Countdown17.73Âą 1.0137.11Âą 2.60+19.4 Table 11: Five-seed evaluation (meanÂąs.d. across seeds). Baseline variance is remarkably low on GSM8K (Âą0.15p) and MATH500 (Âą0.08p), confirming single-seed estimates are representative. All improvements are significant (p < 0.001, paired bootstrap). Plan-conditioned GSM8K has zero variance across seeds. GSM8KMATH500Countdown 0 20 40 60 80 100 Accuracy (%) 75.5 88.0 +12.5p 35.8 41.5 +5.8p 17.7 37.1 +19.4p Error bars: 1 s.d. across 5 seeds 5-seed evaluation (all p < 0.01) Baseline + Sonnet plan Figure 8: Five-seed evaluation with error bars (1 s.d.). Plan conditioning produces large, statistically significant improvements across all three benchmarks. On GSM8K, plans reduce variance to zeroâ the same problems are solved regardless of the random seed. Plans eliminate variance on GSM8K. Plan-conditioned GSM8K accuracy is 88.02% with zero variance across all 5 seeds. This striking result has a simple explanation: plans are cached (identical across seeds), and with a sufficiently informative plan, the denoising process converges to the same answer. This suggests plans not only improve accuracy but also make diffusion inference more reliable. All improvements are statistically significant. The plan conditioning lift exceeds the baseline standard deviation by 83Ăon GSM8K (+12.5p vs.Âą0.15p) and 19Ăon Countdown (+19.4p vs. Âą1.01p). Paired bootstrap 95% confidence intervals exclude zero for all benchmarks (p < 0.001). 5.9 Generalization to Additional Benchmarks To test whether plan conditioning generalizes beyond our primary benchmarks, we evaluate on DART5, ARC-Challenge, and AIME24âbenchmarks used by Berrayana et al. [2025] in their concurrent study of DDLMâARM collaboration. These span mathematical reasoning (DART5: 5-step arithmetic; AIME24: competition math), and multiple-choice science knowledge (ARC- Challenge). We generate Sonnet hybrid plans at budgets of 100 and 150 tokens and report the best condition per benchmark. Frontier plans help on all benchmarks. DART5 improves by +6.2p (11.0%â17.2%), ARC- Challenge by +3.9p (71.3%â75.2%), and AIME24 by +3.3p (0.0%â3.3%). These results extend the finding of Berrayana et al. [2025] that ARMâDDLM is the more effective text-space direction but yields only modest gains with small planners: when scaling to a frontier planner, zero-shot text scaffolding provides consistent, meaningful lift. Our ARC-Challenge baseline (71.3%) isâź16p below their reported baseline (87.5%); we were unable to reproduce their baseline despite using the 15 BenchmarkLLaDA+ Sonnet PlanâBerr. BLBerr. TextBerr. Latent â DART511.017.2+6.215.027.054.0 ARC-Challenge71.375.2+3.987.591.081.0 AIME240.03.3+3.31.51.514.0 Table 12: Plan conditioning on benchmarks from Berrayana et al. [2025]. âBerr. BLâ is their LLaDA- only baseline. âBerr. Textâ is their best text-space collaboration result (any direction). âBerr. Latentâ is their best latent-space DDLMâARM result. â Uses a trained Linear-GELU-Linear projector on 35K domain-specific samples. On ARC-C, text-space collaboration (91.0%) outperforms latent (81.0%), but on DART5 and AIME the latent projector provides dramatically higher accuracy. same model (LLaDA-8B-Instruct) and generation parameters. Investigation reveals thatâź10% of LLaDAâs generations terminate prematurely (emitting padding tokens before producing an answer), a stochastic diffusion failure mode that may account for part of the discrepancy; differences in prompting format or hardware-dependent numerical precision may explain the remainder. The relative improvement (+3.9p) is the relevant comparison. Coordination vs. capacity. On the most extreme-difficulty reasoning tasks, our zero-shot text approach falls short of Berrayana et al.âs latent-space method: their trained projector achieves 14.0% on AIME and 54.0% on DART5, compared to our 3.3% and 17.2% (Table 12). This delineates the boundary of text-space conditioning. Natural-language plans effectively solve the coordination problem of parallel decodingâevidenced by our large, out-of-domain gains on GSM8K (+11.6p) and HumanEval (+12.8p)âbut they cannot inject mathematical capacity that the executor fundamentally lacks. The latent-space projector, trained on 35K domain-specific mathematical samples, likely acts as a high-bandwidth capacity accelerator. Notably, on ARC-Challenge (science MCQs), where the bottleneck is knowledge retrieval rather than multi-step reasoning, text-space collaboration outperforms latent even in their own results (91.0% vs. 81.0%). Text-space scaffolding thus serves as a general-purpose coordination mechanism, while latent-space training offers a specialized approach for pushing absolute capacity limits on extreme-difficulty tasks. Budget preferences are consistent.DART5 (multi-step math) benefits from the larger 150-token budget, while ARC-Challenge (multiple-choice) shows identical results at 100 and 150 tokens. This mirrors our GSM8K finding (§4.4) that math tasks benefit from more detailed plans, while tasks with shorter answer formats saturate earlier. 6 Related Work Diffusion language models. Continuous diffusion for text has been explored by Li et al. [2022] and D3PM [Austin et al., 2021]. Masked diffusion modelsâwhere the noise process randomly masks tokensâhave shown particular promise: MDLM [Sahoo et al., 2024], Dream [Ye et al., 2025], and LLaDA [Nie et al., 2025] demonstrate competitive perplexity and generation quality. Mercury [Khanna et al., 2025] and Gemini Diffusion [Google DeepMind, 2025] demonstrate diffusion-based generation at production scale. Our work takes LLaDA as a baseâusing the d1 evaluation framework [Zhao et al., 2025] for scoringâand shows that an external plan can substantially improve its reasoning without any training. Reinforcement learning approaches such as diffu-GRPO [Zhao et al., 2025] and coupled-GRPO [Gong et al., 2025] improve diffusion LLM reasoning through fine-tuning; plan conditioning is orthogonal and could be combined with these methods. Coherence in parallel generation. Several works address the coherence challenge in parallel decoding. PVF [Li et al., 2026] uses a plan-verify-fill framework for structured parallel decoding in diffusion models. Diffusion in Diffusion [Ma et al., 2026] reclaims global coherence via semi- autoregressive diffusion. DDPD [Liu et al., 2025] generates while planning via token-position-level denoising. Our approach is distinct in using a separate AR model to provide semantic plans, rather than training or modifying the diffusion model itself. Planning for LLM execution. The plan-and-execute paradigm has been widely studied for AR models: chain-of-thought [Wei et al., 2022], tree-of-thought [Yao et al., 2024], ReAct [Yao et al., 16 2023], and plan-then-generate [Wang et al., 2023]. For diffusion models, Planned Diffusion [Israel et al., 2025] uses span segmentation to enable parallel generation across independent chunks, targeting the speedâquality Pareto frontier rather than reasoning quality per se. Concurrent work.Concurrent with our work, Berrayana et al. [2025] study planner-executor col- laboration between DDLMs and ARMs, evaluating all four pairings (ARMâDDLM, DDLMâARM, and same-family variants) across ARC, DART, and AIME. They find that ARMâDDLM outper- forms DDLMâARM in text space, though gains are modest with small planners, and that a learned latent-space projector substantially improves DDLMâARM communication. Crucially, their ARM planners are 3Bâ8B models (Qwen2.5, Llama 3.1/3.2)âcomparable to or weaker than the DDLM executor. Our planner quality sweep (Table 6) provides a unifying explanation: below a quality threshold (roughly Haiku-class), ARM plans actively harm DDLM performance, consistent with their finding that small-ARMâDDLM text-space conditioning yields only modest gains. Above this threshold, ARMâDDLM text-space conditioning provides large improvements (+11.6p on GSM8K), a regime their study does not explore. We additionally verify this on their benchmarks: frontier plans improve LLaDA on DART5 (+6.2p) and ARC-Challenge (+3.9p) (Table 12), con- firming that planner qualityânot directionâis the key variable. The two works are complementary: they characterize the small-scale collaboration landscape and demonstrate the promise of latent-space communication, while we show that frontier-scale text-space planning yields practical gains without architectural modifications. Reasoning distillation. Our approach is related to the reasoning distillation literature, where a strong modelâs chain-of-thought is used to improve a weaker model. Hsieh et al. [2023] show that distilling step-by-step rationales from a large LM can train a smaller model to outperform the large model, while Fu et al. [2023] demonstrate that specializing smaller language models with reasoning chains from larger ones yields strong performance on complex tasks. Burns et al. [2023] study weak- to-strong generalization, finding that strong models finetuned on weak labels outperform their weak supervisors but recover only a fraction of their full capabilityâa cautionary result for superhuman alignment that nonetheless demonstrates cross-capability transfer. Plan conditioning differs from these approaches in that it operates at inference time rather than training time: the plan is prepended as a frozen prefix and the executor modelâs weights are never updated. This makes the technique immediately applicable to any off-the-shelf diffusion language model without fine-tuning. 7 Conclusion We have shown that plan conditioningâprepending a short natural-language plan from a frontier AR modelâis a simple, effective, and cheap method for improving diffusion LLM reasoning. On GSM8K, it improves LLaDA-8B from 75.6% to 87.2%, closing the gap to a same-size AR model entirely. On HumanEval, the gain is even larger (+12.8p), demonstrating that plans generalize from math to code generation. The key insight is that diffusion models suffer from a coordination problem: all tokens are generated simultaneously, lacking the sequential dependency chain that AR models use to build coherence. A plan serves as a frozen scaffoldâglobally visible context that provides this missing structure. The effect generalizes beyond our primary benchmarks: on DART5 and ARC-Challenge from Berrayana et al. [2025], frontier text plans improve LLaDA by +6.2p and +3.9p, confirming that the ARMâDDLM direction works when the planner is sufficiently capable. Six findings particularly stand out. First, diffusion models benefit 2â10Ămore from plans than AR models on GSM8K and HumanEval, while showing exact parity on Countdownâthe advantage is task-dependent, emerging specifically where sequential multi-step reasoning is the bottleneck. Second, fine-grained ablations reveal a striking dissociation: the model follows plan strategy (wrong-strategy plans causeâ16.3p) but is robust to plan values (perturbed numbers:â1.1p)âsuggesting an effective division of labor where the planner reasons and the executor computes. Third, planner quality has a sharp threshold: Llama-class plans (3Bâ8B) hurt (â1.6 toâ6.8p on GSM8K), self-plans are useless (p = 0.86), but Haiku-class and above provide genuine lift. Fourth, attention analysis directly confirms the frozen scaffold mechanism: plan tokens receive 1.8Ăexcess attention during early denoising (when the canvas is masked), declining to uniform as completion tokens solidifyâand this attention pattern is indiscriminate across plan quality conditions, explaining why wrong-strategy plans are catastrophic. Fifth, plan conditioning is qualitatively different from additional compute: doubling denoising steps yields +3.7p while plans yield +11.6p on GSM8K. Sixth, plans eliminate 17 stochastic variance: plan-conditioned GSM8K accuracy has zero standard deviation across 5 random seeds (88.02%), making diffusion inference highly stableâthe fixed scaffold drives the denoising process to solve the same subset of problems regardless of the random seed. Limitations. We test on one open-source diffusion architecture (LLaDA). Our method requires a frontier AR model for plan generation, adding latency and costâthough Haiku-quality plans may suffice for simpler tasks. We do not explore plan conditioning combined with RL training, which could amplify the effect. HumanEval shows a different format preference than math: strategy plans (+12.8p) outperform hybrid (+11.0p), suggesting code benefits from high-level algorithmic guidance over structured outlines. A small fraction of HumanEval generations (3.7%) fail to produce an extractable code block; manual inspection confirms these are genuine model failures (degenerate repetition, malformed syntax) rather than parser limitations. Additionally, diffusion model outputs are sensitive to numerical precision: different hardware and attention implementations can shift absolute accuracies by 1â4p, though within-experiment relative comparisons are stable. Most experiments use a single seed (s=42); multi-seed evaluation (5 seeds) confirms significance on GSM8K, MATH500, and Countdown, but HumanEval and ablation experiments have not been replicated across seedsâ the large effect sizes (+12.8p, +11.6p) make seed-driven reversals unlikely but not ruled out. On multiple-choice benchmarks (ARC-C), approximately 10% of LLaDA generations terminate prematurely, emitting padding tokens before producing an answer tag. This stochastic failure mode depresses absolute baselines but does not differentially affect plan-conditioned runs. Future work.Natural extensions include (1) plan distillationâtraining a small model to generate plans, removing the frontier AR dependency; (2) adaptive plan budgets that scale with problem diffi- culty; (3) combining plan conditioning with RL training (diffu-GRPO with plans); and (4) extending to harder code benchmarks (LiveCodeBench, SWE-Bench) where the planâcode alignment may yield even larger gains. References Anthropic. Claude 3.5 model card. 2025. https://w.anthropic.com. Jacob Austin, Daniel D Johnson, Jonathan Ho, Daniel Tarlow, and Rianne van den Berg. Structured denoising diffusion models in discrete state-spaces. Advances in Neural Information Processing Systems, 34, 2021. Lina Berrayana, Ahmed Heakl, Muhammad Abdullah Sohail, Thomas Hofmann, Salman Khan, and Wei Chen. Planner and executor: Collaboration between discrete diffusion and autoregressive models in reasoning. arXiv preprint arXiv:2510.15244, 2025. Collin Burns, Haotian Ye, Dan Klein, and Jacob Steinhardt. Weak-to-strong generalization: Eliciting strong capabilities with weak supervision. arXiv preprint arXiv:2312.09390, 2023. Mark Chen, Jerry Tworek, Heewoo Jun, Qiming Yuan, Henrique Ponde de Oliveira Pinto, Jared Kaplan, Harri Edwards, Yuri Burda, Nicholas Joseph, Greg Brockman, et al. Evaluating large language models trained on code. arXiv preprint arXiv:2107.03374, 2021. Karl Cobbe, Vineet Kosaraju, Mohammad Bavarian, Mark Chen, Heewoo Jun, Lukasz Kaiser, Matthias Plappert, Jerry Tworek, Jacob Hilton, Reiichiro Nakano, et al. Training verifiers to solve math word problems. arXiv preprint arXiv:2110.14168, 2021. Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Amy Yang, Angela Fan, et al. The Llama 3 herd of models. arXiv preprint arXiv:2407.21783, 2024. Richard E Fikes and Nils J Nilsson. STRIPS: A new approach to the application of theorem proving to problem solving. In Proceedings of the 2nd International Joint Conference on Artificial Intelligence, 1971. Yao Fu, Hao Peng, Litu Ou, Ashish Sabharwal, and Tushar Khot. Specializing smaller language models towards multi-step reasoning. In ICML, 2023. 18 Shansan Gong, Ruixiang Zhang, Huangjie Zheng, Jiatao Gu, Navdeep Jaitly, Lingpeng Kong, and Yizhe Zhang. DiffuCoder: Understanding and improving masked diffusion models for code generation. arXiv preprint arXiv:2506.20639, 2025. GoogleDeepMind.Geminidiffusion.https://deepmind.google/models/ gemini-diffusion/, 2025. Accessed: 2025-05-01. Dan Hendrycks, Collin Burns, Saurav Kadavath, Akul Arora, Steven Basart, Eric Tang, Dawn Song, and Jacob Steinhardt. Measuring mathematical problem solving with the MATH dataset. Advances in Neural Information Processing Systems, 34, 2021. Cheng-Yu Hsieh, Chun-Liang Li, Chih-Kuan Yeh, Hootan Nakhost, Yasuhisa Fujii, Alexander Ratner, Ranjay Krishna, Chen-Yu Lee, and Tomas Pfister. Distilling step-by-step! outperforming larger language models with less training data and smaller model sizes. In Findings of ACL, 2023. Wenlong Huang, Fei Xia, Ted Xiao, Harris Chan, Jacky Liang, Pete Florence, Andy Zeng, Jonathan Tompson, Igor Mordatch, Yevgen Chebotar, et al. Inner monologue: Embodied reasoning through planning with language models. In Conference on Robot Learning, 2022. Daniel Israel, Tian Jin, Ellie Cheng, Guy Van den Broeck, Aditya Grover, Suvinay Subramanian, and Michael Carbin. Planned diffusion. arXiv preprint arXiv:2510.18087, 2025. Samar Khanna, Siddhant Kharbanda, Shufan Li, Harshit Varma, Eric Wang, Sawyer Birn- baum, Ziyang Luo, Yanis Miraoui, Akash Palrecha, Stefano Ermon, Aditya Grover, and Volodymyr Kuleshov. Mercury: Ultra-fast language models based on diffusion. arXiv preprint arXiv:2506.17298, 2025. Miao Li, Hanyang Jiang, Sikai Cheng, Hengyu Fu, Yuhang Cai, Baihe Huang, Tinghan Ye, Xuanzhou Chen, and Pascal Van Hentenryck. Plan, verify and fill: A structured parallel decoding approach for diffusion language models. arXiv preprint arXiv:2601.12247, 2026. Xiang Lisa Li, John Thickstun, Ishaan Gulrajani, Percy Liang, and Tatsunori B Hashimoto. Diffusion- LM improves controllable text generation. Advances in Neural Information Processing Systems, 35, 2022. Hunter Lightman, Vineet Kosaraju, Yura Burda, Harri Edwards, Bowen Baker, Teddy Lee, Jan Leike, John Schulman, Ilya Sutskever, and Karl Cobbe. Letâs verify step by step. arXiv preprint arXiv:2305.20050, 2023. Sulin Liu, Juno Nam, Andrew Campbell, Hannes Stärk, Yilun Xu, Tommi Jaakkola, and Rafael GĂłmez-Bombarelli. Think while you generate: Discrete diffusion with planned denoising. Inter- national Conference on Learning Representations, 2025. Linrui Ma, Yufei Cui, Kai Han, and Yunhe Wang. Diffusion in diffusion: Reclaiming global coherence in semi-autoregressive diffusion. arXiv preprint arXiv:2601.13599, 2026. Shen Nie, Fengqi Zhu, Chao You, Xiaojie Zhang, Jingyang Liang, Hanyang Ma, Junbo Lu, Zihan Chen, Jianlin Li, Jiax Yang, et al. LLaDA: Large language diffusion with masking. arXiv preprint arXiv:2502.09992, 2025. Subham Sekhar Sahoo, Marianne Arriola, Yair Schiff, Aaron Gokaslan, Edgar Marroquin, Justin T Chiu, Alexander Rush, and Volodymyr Kuleshov. Simple and effective masked diffusion language models. Advances in Neural Information Processing Systems, 37, 2024. Lei Wang, Wanyu Xu, Yihuai Lan, Zhiqiang Hu, Yunshi Lan, Roy Ka-Wei Lee, and Ee-Peng Lim. Plan-and-solve prompting: Improving zero-shot chain-of-thought reasoning by large language models. Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics, 2023. Jason Wei, Xuezhi Wang, Dale Schuurmans, Maarten Bosma, Brian Ichter, Fei Xia, Ed H Chi, Quoc V Le, and Denny Zhou. Chain-of-thought prompting elicits reasoning in large language models. Advances in Neural Information Processing Systems, 35, 2022. 19 Shunyu Yao, Jeffrey Zhao, Dian Yu, Nan Du, Izhak Shafran, Karthik Narasimhan, and Yuan Cao. ReAct: Synergizing reasoning and acting in language models. International Conference on Learning Representations, 2023. Shunyu Yao, Dian Yu, Jeffrey Zhao, Izhak Shafran, Tom Griffiths, Yuan Cao, and Karthik Narasimhan. Tree of thoughts: Deliberate problem solving with large language models. Advances in Neural Information Processing Systems, 36, 2024. Jiacheng Ye, Zhihui Xie, Lin Zheng, Jiahui Gao, Zirui Wu, Xin Jiang, Zhenguo Li, and Lingpeng Kong. Dream 7b: Diffusion large language models. arXiv preprint arXiv:2508.15487, 2025. Yuyang Zhao, Jinghan Wang, Shengjie Cai, et al. d1: Scaling reasoning in diffusion LLMs via reinforcement learning. arXiv preprint arXiv:2504.12216, 2025. 20