Research
Tortoise and Hare Guidance: Accelerating Diffusion Model Inference with Multirate Integration
Overview Research area: Generative computer vision — specifically, fast sampling for diffusion models using classifier-free guidance (CFG). Technical level: Advanced (involves reformulating a guided d
- arXiv
- 2511.04117
- Published
- 2025-11-06
- Authors
- Yunghee Lee, Byeonghyun Pak, Junwha Hong, Hoseong Kim
AI summary
Overview
- Research area: Generative computer vision — specifically, fast sampling for diffusion models using classifier-free guidance (CFG).
- Technical level: Advanced (involves reformulating a guided diffusion sampler as a multirate system of ODEs, error-bound analysis, and custom timestep/guidance schedulers).
- Scope: The paper proposes a training-free sampling strategy that splits the noise estimate and the guidance term onto different timestep grids to cut computation while preserving image quality.
What This Paper Is About
Diffusion models generate images by repeatedly solving a differential equation over many timesteps, and classifier-free guidance adds an extra model evaluation at each of those steps, which is the dominant cost. Existing fast solvers treat the whole guided equation as a single system and apply the same step size everywhere, so they cannot exploit any difference in how sensitive the two parts are to numerical approximation. This paper argues those two parts behave very differently, and builds a sampler that spends fine-grained compute only where it is actually needed.
Key Contributions
- A multirate reformulation of guided diffusion. The authors rewrite the classifier-free guidance ODE as a multirate system of ODEs, separating the noise estimate branch from the additional guidance branch so the two can be integrated at different rates.
- An error-bound analysis motivating the split. They show analytically that the additional guidance branch is more robust to approximation error than the noise estimate, exposing redundancy that conventional single-rate solvers leave on the table.
- The Tortoise and Hare Guidance (THG) sampler. The noise estimate is integrated with the "tortoise" equation on the original fine-grained timestep grid, while the additional guidance is integrated with the "hare" equation on a coarse grid — a training-free change that requires no model retraining.
- Two supporting components: (i) an error-bound-aware timestep sampler that adaptively selects step sizes, and (ii) a guidance-scale scheduler that stabilizes large extrapolation spans introduced by the coarse guidance grid.
Main Findings
- Guidance is less error-sensitive than the noise estimate. The error-bound analysis shows the additional guidance branch tolerates coarser approximation, meaning much of the computation conventionally spent on it is redundant.
- Large efficiency gain at near-zero quality cost. THG reduces the number of function evaluations by up to 30% while producing virtually no loss in generation fidelity, reported as ΔImageReward ≤ 0.032.
- Competitive against existing accelerators. Under identical computation budgets, THG outperforms state-of-the-art CFG-based training-free accelerators (the abstract does not specify which baselines, datasets, or metrics beyond ImageReward).
- No retraining required. The method operates purely at sampling time and works on top of existing diffusion models.
- Broader implication. The authors frame multirate formulations as a promising general direction for diffusion solvers, toward real-time high-quality image synthesis.
Methodology in Plain English
Instead of treating the guided diffusion equation as one indivisible computation, the authors split it into two linked parts: the base noise prediction (the "tortoise" — steady, accurate, needs small steps) and the guidance correction (the "hare" — fast, tolerant of big steps). They analyze the error bounds of each part to justify that the guidance side can be evaluated far less often. Then they build a sampler that runs the noise prediction on the original dense timestep schedule while evaluating the guidance term only on a sparse schedule, and reuse/interpolate the guidance signal in between. Two mechanisms keep this stable: a timestep sampler that picks step sizes based on the error bounds, and a guidance-scale scheduler that prevents the large jumps in the coarse grid from destabilizing generation. Nothing about the underlying model is retrained — the change is entirely in how the sampling loop is executed.
Why This Matters
- Research impact: It reframes guided diffusion sampling as a multirate numerical integration problem, suggesting a general recipe other solver research could build on, and it questions the assumption that all terms in the guided ODE deserve equal computational effort.
- Real-world applications:
- Real-time or near-real-time image generation tools and creative design assistants.
- On-device and mobile image synthesis, where compute and battery budgets are tight.
- Interactive editing and iterative creative workflows that need low-latency turnaround.
- Large-scale batch image or content generation pipelines where sampling cost dominates cloud inference spend.
- Industry relevance: Any organization serving diffusion models at scale pays directly for per-step computation, so a training-free reduction in function evaluations translates into lower inference cost and faster response times without retraining or changing model weights.
Future Directions
- Generalize beyond classifier-free guidance: whether multirate splitting helps other guided or conditional sampling formulations (e.g., other guidance mechanisms or distilled samplers) remains open.
- Push the coarse grid further: the abstract reports up to 30% NFE reduction; how much further the guidance branch can be coarsened before fidelity degrades is not established here.
- Combine with other acceleration families: interaction between multirate integration and orthogonal techniques such as distillation or caching is an untested combination.
- Theory-to-practice gap: validating whether the error-bound-driven adaptive step selection holds under the wide range of prompts, resolutions, and model architectures used in practice.
- Broader generative modalities: whether the same tortoise-and-hare decomposition applies to video, audio, or 3D diffusion where per-step cost is even higher.
Target Audience
Researchers and engineers working on diffusion model inference efficiency, numerical solvers for generative models, and production deployment of image synthesis systems. Readers should be comfortable with ODE-based sampling and classifier-free guidance; the multirate and error-bound framing assumes a graduate-level or practitioner background in numerical methods or generative modeling.
Authors’ abstract
In this paper, we propose Tortoise and Hare Guidance (THG), a training-free strategy that accelerates diffusion sampling while maintaining high-fidelity generation. We demonstrate that the noise estimate and the additional guidance term exhibit markedly different sensitivity to numerical error by reformulating the classifier-free guidance (CFG) ODE as a multirate system of ODEs. Our error-bound analysis shows that the additional guidance branch is more robust to approximation, revealing substantial redundancy that conventional solvers fail to exploit. Building on this insight, THG significantly reduces the computation of the additional guidance: the noise estimate is integrated with the tortoise equation on the original, fine-grained timestep grid, while the additional guidance is integrated with the hare equation only on a coarse grid. We also introduce (i) an error-bound-aware timestep sampler that adaptively selects step sizes and (ii) a guidance-scale scheduler that stabilizes large extrapolation spans. THG reduces the number of function evaluations (NFE) by up to 30% with virtually no loss in generation fidelity ($Δ$ImageReward $\leq$ 0.032) and outperforms state-of-the-art CFG-based training-free accelerators under identical computation budgets. Our findings highlight the potential of multirate formulations for diffusion solvers, paving the way for real-time high-quality image synthesis without any model retraining. The source code is available at https://github.com/yhlee-add/THG.