Adaptive Spectral Feature Forecasting for Diffusion Sampling Acceleration
Jiaqi Han, Juntong Shi, Puheng Li, Haotian Ye, Qiushan Guo, Stefano Ermon
CVPR 2026
cs.CV, cs.LG
2026-03-02
Caches only the last DiT block's features and extrapolates them with a Chebyshev fit; FLUX.1 runs 4.79× faster at higher fidelity than TaylorSeer, with no retraining.
Diffusion samplers spend dozens of denoising steps, each a full forward pass, so generation is slow. Feature-caching accelerators exploit that features change slowly between adjacent steps: skip some forward passes and reconstruct the missing features from cached ones, cutting the effective NFE. The prior art TaylorSeer predicts skipped features with a Taylor expansion, but its error grows with step size, so aggressive skipping blurs the output. The tension is between saving little with small steps and looking bad with large ones.
Spectrum's observation: within a layer, each feature channel is a smooth function of the denoising time t, well fit by a low-order polynomial. It drops Taylor (whose error scales with powers of the step size) for a Chebyshev-polynomial ridge-regression fit, whose error bound depends on the polynomial degree, not on the step size.
Concretely:
The same scheme works on DiT (FLUX, Wan, HunyuanVideo, SD3) and on U-Net SDXL, so it is tied to the "features are smooth in time" property, not to a particular backbone.
Ten NFE buys roughly 4.5 to 4.8×, fourteen about 3.5×.
| Model | Speedup | Quality (PSNR/dB) | TaylorSeer |
| FLUX.1 | 4.79× | 22.21 | 17.41 |
| Wan2.1-14B | 4.67× | 21.24 | 17.24 |
| HunyuanVideo | 4.56× | 25.39 | n/a |
| SD3.5-Large | 4.32× | n/a | — |
RMSE to the oracle features is 2 to 3× lower than TaylorSeer. Wan2.1-14B still scores 82.21 on VBench. The point is that it holds up at large step sizes where TaylorSeer visibly breaks down.
For practitioners: training-free and plug-and-play, it cuts inference cost on an existing DiT video pipeline with no retraining and no new weights. Video generation is among the most expensive inference workloads today, and this kind of method turns minutes into a minute. It is an engineering dividend, not a capability gain; the quality ceiling is unchanged.