CVAINov 14, 2025

LiteAttention: A Temporal Sparse Attention for Diffusion Transformers

arXiv:2511.11062v15 citationsh-index: 3
Originality Incremental advance
AI Analysis

This addresses latency issues in video diffusion models, offering a practical solution for real-time applications, though it is incremental as it builds on existing attention optimization methods.

The paper tackles the quadratic attention complexity problem in Diffusion Transformers for video generation by introducing LiteAttention, which exploits temporal coherence in sparsity patterns to skip redundant computations, achieving substantial speedups with no quality degradation.

Diffusion Transformers, particularly for video generation, achieve remarkable quality but suffer from quadratic attention complexity, leading to prohibitive latency. Existing acceleration methods face a fundamental trade-off: dynamically estimating sparse attention patterns at each denoising step incurs high computational overhead and estimation errors, while static sparsity patterns remain fixed and often suboptimal throughout denoising. We identify a key structural property of diffusion attention, namely, its sparsity patterns exhibit strong temporal coherence across denoising steps. Tiles deemed non-essential at step $t$ typically remain so at step $t+δ$. Leveraging this observation, we introduce LiteAttention, a method that exploits temporal coherence to enable evolutionary computation skips across the denoising sequence. By marking non-essential tiles early and propagating skip decisions forward, LiteAttention eliminates redundant attention computations without repeated profiling overheads, combining the adaptivity of dynamic methods with the efficiency of static ones. We implement a highly optimized LiteAttention kernel on top of FlashAttention and demonstrate substantial speedups on production video diffusion models, with no degradation in quality. The code and implementation details will be publicly released.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes