🤖 AI Summary
Autoregressive video generation remains impractical due to the high computational cost of iterative per-frame denoising, and existing cache reuse methods suffer from coarse granularity that fails to capture pixel-level motion dynamics. This work proposes MotionCache, a novel framework that introduces pixel-level motion awareness into the caching mechanism for the first time. Leveraging inter-frame differences as a lightweight motion proxy, MotionCache employs a coarse-to-fine strategy: it first establishes semantic consistency during a warm-up phase and then dynamically schedules cache update frequencies for individual tokens based on local motion intensity. Theoretical analysis reveals a critical link between cache-induced errors and residual instability. Experiments demonstrate significant acceleration—6.28× on SkyReels-V2 and 1.64× on MAGI-1—with negligible quality degradation of only 1% and 0.01% on VBench, respectively.
📝 Abstract
Autoregressive video generation paradigms offer theoretical promise for long video synthesis, yet their practical deployment is hindered by the computational burden of sequential iterative denoising. While cache reuse strategies can accelerate generation by skipping redundant denoising steps, existing methods rely on coarse-grained chunk-level skipping that fails to capture fine-grained pixel dynamics. This oversight is critical: pixels with high motion require more denoising steps to prevent error accumulation, while static pixels tolerate aggressive skipping. We formalize this insight theoretically by linking cache errors to residual instability, and propose MotionCache, a motion-aware cache framework that exploits inter-frame differences as a lightweight proxy for pixel-level motion characteristics. MotionCache employs a coarse-to-fine strategy: an initial warm-up phase establishes semantic coherence, followed by motion-weighted cache reuse that dynamically adjusts update frequencies per token. Extensive experiments on state-of-the-art models like SkyReels-V2 and MAGI-1 demonstrate that MotionCache achieves significant speedups of $\textbf{6.28}\times$ and $\textbf{1.64}\times$ respectively, while effectively preserving generation quality (VBench: $1\%\downarrow$ and $0.01\%\downarrow$ respectively). The code is available at https://github.com/ywlq/MotionCache.