Skip to content

Stack additional acceleration techniques on top of LocalLeap (SlowFast, dInfer, ES-dLLM) #7

Description

@iOptimizeThings

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:

  1. 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.

  2. dInfer - full inference framework with several optimizations bundled. Achieves 1,100 TPS at batch=1 on 8× H800. Worth porting individual components.

  3. 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

  • One PR per technique (do not bundle)
  • License audit before implementation (per CLAUDE.md rule)
  • Inline citation comment + CREDITS.md entry before code
  • All 4 LocalLeap quality gates pass with each new technique enabled (quality re-verification required - speedup gate alone is not sufficient)
  • Per-technique opt-in flag in SamplingParams
  • Per-model calibration if the technique has thresholds (analogous to _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.

Metadata

Metadata

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions