Background
v0.1 ships LocalLeap (arXiv:2510.07081) as the primary diffusion acceleration. The 2025–2026 literature has produced several follow-up techniques that target different inefficiencies in the denoising loop. Most compose orthogonally with LocalLeap and Fast-dLLM KV caching (#4).
Candidates in priority order:
-
SlowFast Sampling - adaptive step scheduling based on confidence variance. Skips low-information "slow" steps when the canvas is locally settled, takes more "fast" steps in uncertain regions. Reported up to 15.63× speedup on LLaDA standalone, 34.22× when combined with dLLM-Cache on GPQA.
-
dInfer - full inference framework with several optimizations bundled. Achieves 1,100 TPS at batch=1 on 8× H800. Worth porting individual components.
-
ES-dLLM (Early Skipping) - skips later denoising steps once the model's confidence on the active block exceeds a threshold. Reports 226 TPS on H200 for LLaDA-8B.
Acceptance criteria
Out of scope for this issue
This is a meta-issue tracking the research direction. Each technique gets a dedicated implementation PR.
Background
v0.1 ships LocalLeap (arXiv:2510.07081) as the primary diffusion acceleration. The 2025–2026 literature has produced several follow-up techniques that target different inefficiencies in the denoising loop. Most compose orthogonally with LocalLeap and Fast-dLLM KV caching (#4).
Candidates in priority order:
SlowFast Sampling - adaptive step scheduling based on confidence variance. Skips low-information "slow" steps when the canvas is locally settled, takes more "fast" steps in uncertain regions. Reported up to 15.63× speedup on LLaDA standalone, 34.22× when combined with dLLM-Cache on GPQA.
dInfer - full inference framework with several optimizations bundled. Achieves 1,100 TPS at batch=1 on 8× H800. Worth porting individual components.
ES-dLLM (Early Skipping) - skips later denoising steps once the model's confidence on the active block exceeds a threshold. Reports 226 TPS on H200 for LLaDA-8B.
Acceptance criteria
CREDITS.mdentry before codeSamplingParams_LOCAL_LEAP_MODEL_DEFAULTS)Out of scope for this issue
This is a meta-issue tracking the research direction. Each technique gets a dedicated implementation PR.