Papers › Progressive Distillation for Fast Sampling of Diffusion Models

Progressive Distillation for Fast Sampling of Diffusion Models

1 Feb 2022ICLR 2022 4arXiv:2202.00512archive 2025-07-28

Tim Salimans, Jonathan Ho

Diffusion models have recently shown great promise for generative modeling, outperforming GANs on perceptual quality and autoregressive models at density estimation. A remaining downside is their slow sampling time: generating high quality samples takes many hundreds or thousands of model evaluations. Here we make two contributions to help eliminate this downside: First, we present new parameterizations of diffusion models that provide increased stability when using few sampling steps. Second, we present a method to distill a trained deterministic diffusion sampler, using many steps, into a new diffusion model that takes half as many sampling steps. We then keep progressively applying this distillation procedure to our model, halving the number of required sampling steps each time. On standard image generation benchmarks like CIFAR-10, ImageNet, and LSUN, we start out with state-of-the-art samplers taking as many as 8192 steps, and are able to distill down to models taking as few as 4 steps without losing much perceptual quality; achieving, for example, a FID of 3.0 on CIFAR-10 in 4 steps. Finally, we show that the full progressive distillation procedure does not take more time than it takes to train the original model, thus representing an efficient solution for generative modeling using diffusion at both train and test time.

PaperPDFConference PDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2202.00512")

Code

Syntology Ran 10 of 27 code samples harvested from 8 repositories linked to this paper; 17 have no recorded run. Of those that ran: 1 ran · honoured contract; 2 ran · our draft was wrong; 7 ran with no contract checked.

By repository: official repository: 7 samples from 1 repository, 1 ran; community (archive-listed): 20 samples from 7 repositories, 9 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

cloneofsimo/consistency_models mentioned on GitHubpytorch report
deepxuan/dn-dp mentioned on GitHubpytorch report
ericl122333/patchdiffusion-pytorch mentioned on GitHubpytorch report
fashn-AI/tryondiffusion mentioned on GitHubpytorchMIT report
lucidrains/imagen-pytorch mentioned on GitHubpytorchMIT report
sainzerjj/sferd mentioned on GitHubpytorchMIT report
sreerajr000/consistency-models mentioned on GitHubpytorch report
viniciusmikuni/caloscorev2 mentioned on GitHubtf report
viniciusmikuni/gsgm mentioned on GitHubtf report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

27 samples harvested; 10 ran; 1 honoured the contract we drafted; 17 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

1ran · honoured contract
2ran · our draft was wrong
7ran
17unverified

Licence: 10 of the 27 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from 8 repositories linked to this paper, official or community; each sample names its own and says which. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

Model google-research/google-research/diffusion_distillation/diffusion_distillation/dpm.py official repository ran Apache-2.0 (permissive) · e6c610e22a0b8e1f · report
diffusion_forward google-research/google-research/diffusion_distillation/diffusion_distillation/dpm.py official repository unverified Apache-2.0 (permissive) · d37af918412dc794 · report
diffusion_reverse google-research/google-research/diffusion_distillation/diffusion_distillation/dpm.py official repository unverified Apache-2.0 (permissive) · e6029bbacbfd72ee · report
predict_eps_from_x google-research/google-research/diffusion_distillation/diffusion_distillation/dpm.py official repository unverified Apache-2.0 (permissive) · ecf3ebad654f83f5 · report
predict_v_from_x_and_eps google-research/google-research/diffusion_distillation/diffusion_distillation/dpm.py official repository unverified Apache-2.0 (permissive) · 894c180fa74bdbd5 · report
predict_x_from_eps google-research/google-research/diffusion_distillation/diffusion_distillation/dpm.py official repository unverified Apache-2.0 (permissive) · 66e7c354db444496 · report
predict_x_from_v google-research/google-research/diffusion_distillation/diffusion_distillation/dpm.py official repository unverified Apache-2.0 (permissive) · a8cf5ffc562524b9 · report
ConsistencyModel cloneofsimo/consistency_models/consistency_models/unet.py community (archive-listed) ran no licence file found · pointer only · c5b3831528f9c8ce · report
EMA sainzerjj/sferd/diffusion/train_utils.py community (archive-listed) ran · metamorphic tier: deterministic MIT (permissive) · 1baf4c2b5fd0b943 · report
GaussianDiffusion ericl122333/patchdiffusion-pytorch/patch_diffusion/respace.py community (archive-listed) ran no licence file found · pointer only · afb6a311f3326182 · report
RunningStatistics sainzerjj/sferd/diffusion/train_utils.py community (archive-listed) ran · metamorphic tier: deterministic MIT (permissive) · 0b2e4925d1642a0b · report
_WrappedModel ericl122333/patchdiffusion-pytorch/patch_diffusion/respace.py community (archive-listed) ran no licence file found · pointer only · eeb6b2016ef36e61 · report
_extract_into_tensor deepxuan/dn-dp/model/sr3_modules/respace.py community (archive-listed) ran · our draft was wrong no licence file found · pointer only · 7cf7aa019c5dcc57 · report
make_beta_schedule deepxuan/dn-dp/model/sr3_modules/respace.py community (archive-listed) ran · honoured contract no licence file found · pointer only · 7ef3b9728402cdd1 · report
make_none_args Hramchenko/diffusion_distiller/train_utils.py community (archive-listed) ran MIT (permissive) · 513b57c8cf771713 · report
multistep_consistency_sampling sreerajr000/consistency-models/sampler.py community (archive-listed) ran · our draft was wrong MIT (permissive) · 18b1cad6bd142108 · report
DeepSetsAtt viniciusmikuni/gsgm/demo/GSGM.py community (archive-listed) unverified no licence file found · pointer only · 9cde3092e14a7d62 · report
DiffusionDistillation Hramchenko/diffusion_distiller/train_utils.py community (archive-listed) unverified MIT (permissive) · 791b3bf86655f018 · report
DistillationTrainer sainzerjj/sferd/diffusion/train_utils.py community (archive-listed) unverified MIT (permissive) · b13671cc03127267 · report
DummyScheduler sainzerjj/sferd/diffusion/train_utils.py community (archive-listed) unverified MIT (permissive) · d56db955dcd1e1bb · report
GSGM viniciusmikuni/gsgm/demo/GSGM.py community (archive-listed) unverified no licence file found · pointer only · ef2ea1d8599e8b2d · report
GaussianDiffusion deepxuan/dn-dp/model/sr3_modules/respace.py community (archive-listed) unverified no licence file found · pointer only · 92244ba45f2a5ca4 · report
SpacedDiffusion ericl122333/patchdiffusion-pytorch/patch_diffusion/respace.py community (archive-listed) unverified no licence file found · pointer only · 3ef0f294c952f62d · report
SpacedDiffusion deepxuan/dn-dp/model/sr3_modules/respace.py community (archive-listed) unverified no licence file found · pointer only · 0bceb8d35b696f6a · report
default_iter_callback Hramchenko/diffusion_distiller/train_utils.py community (archive-listed) unverified MIT (permissive) · 7b619a5570fecf04 · report
moving_average Hramchenko/diffusion_distiller/train_utils.py community (archive-listed) unverified MIT (permissive) · 2dae0e9618d089f2 · report
save_image sainzerjj/sferd/diffusion/train_utils.py community (archive-listed) unverified MIT (permissive) · d9b8534277a98f88 · report

Tasks

Density EstimationImage Generation

Results from the paper archive 2025-07-28

TaskDatasetModelMetricValueRank at snapshotLeaderboardReport
Image Generation CIFAR-10 PD (NFE=8) FID 2.57 #23 of 78 Archive leaderboard report
Image Generation CIFAR-10 PD (NFE=4) FID 3.00 #25 of 78 Archive leaderboard report

Ranks are positions in the archive's leaderboards as they stood at the 2025-07-28 snapshot. Results published since then are not among these rows, so a rank here is not a current standing.

Methods

Diffusion

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections