Attention Is All You Need
Ashish Vaswani, Noam Shazeer et al.
0
Citations
0
Influential Citations
—
Venue
2026
Year
Video Diffusion Transformers process long spatio-temporal sequences, making self-attention the main bottleneck in high-resolution video generation. Training-free sparse attention reduces this cost, but adaptive Top-p routing creates uneven per-head workloads under multi-GPU sequence parallelism. The resulting workload heterogeneity turns sparse attention into a rank-level straggler problem. We present , a training-free sparse-attention system that improves the distributed execution efficiency of adaptive sparse attention under multi-GPU sequence parallelism. uses Top-p routing, a Top-k safety floor, and video-aware block organization as the sparse-routing frontend, then repairs the materialized mask at runtime. Runtime Load Balancing migrates a small number of heavy heads via P2P communication to shorten the current critical path. Slack-Aware Sparse Augmentation fills residual non-critical-rank slack with additional high-value blocks, while overlap hides scheduling and migration overhead behind existing computation. On step-distilled Wan2.2 I2V, reduces average load imbalance from 1.34 to 1.08 and delivers a 4.41times attention speedup over FlashAttention, while achieving a 2.02--2.11times DiT inference speedup with competitive video quality.
Video Diffusion Transformers have become the dominant architecture for high-resolution video generation, but their self-attention over long spatio-temporal sequences creates a severe computational bottleneck. While training-free sparse attention methods like Top-p routing reduce this cost, they introduce uneven per-head workloads under multi-GPU sequence parallelism, turning sparse attention into a rank-level straggler problem. FVAttn directly tackles this overlooked issue, making it highly relevant for practitioners deploying video generation models at scale.
The paper's focus on runtime load balancing rather than static partitioning is a practical advance. By migrating heavy heads via P2P communication and filling slack with additional computation, FVAttn achieves near-ideal load balance without retraining. This is particularly important for production systems where model weights are fixed and inference latency is critical.
On the step-distilled Wan2.2 I2V model, FVAttn delivers:
These results demonstrate that runtime load balancing can effectively eliminate the straggler problem introduced by adaptive sparse attention, achieving near-linear scaling under sequence parallelism.
FVAttn addresses a practical distributed computing challenge that arises naturally when combining sparse attention with sequence parallelism. Its training-free nature means it can be applied to existing video generation models without modification. The techniques—runtime load balancing, slack-aware augmentation, and overlap scheduling—are general and could be adapted to other domains where adaptive sparsity creates workload imbalance. This work moves sparse attention from a purely algorithmic optimization to a systems-level solution, enabling more efficient deployment of large video diffusion models.
Ashish Vaswani, Noam Shazeer et al.
Jakubův, Jan, Chvalovský, Karel et al.
Pauli Virtanen, Ralf Gommers et al.
Tom B. Brown, Benjamin Mann et al.