| 相关实体 | 关系类型 | 关联理由 |
|---|---|---|
| SLA (2509.24006) | 直接前驱 | SLA2 的直接改进对象——同一团队 (Tsinghua + UC Berkeley) 对 SLA 的 renormalization mismatch 和 heuristic routing 两个缺陷的系统修正 |
| Seedance 2.0 (2604.14148) | 下游用户 | Seedance 系列是 SLA/SLA2 类 sparse attention 的潜在应用场景——video diffusion 是 SLA2 的主要 benchmark 模型 (Wan2.1) 所在赛道 |
| LongCat-Video (2510.22200) | 并行探索 | 美团的视频生成加速方案,同样面向 DiT 的 attention 瓶颈,但采用 3D Block Sparse Attention + coarse-to-fine 而非 sparse-linear 分解 |
| 维度 | SLA | SLA2 |
|---|---|---|
| 分支混合 | $O = O_s + \mathrm{Proj}(O_l)$ — projection 需同时补偿 scaling + linear [2509.24006] | $O = \alpha \odot O_s + (1-\alpha) \odot O_l$ — convex combination, 无 projection [2602.12675] |
| Routing | Heuristic: $\mathrm{softmax}(\bar{Q}\bar{K}^\top)$ → Top-k | Learnable: $\mathrm{proj}_q(\bar{Q}) \cdot \mathrm{proj}_k(\bar{K})^\top$ → Top-k [2602.12675] |
| 量化加速 | 无 | QAT: INT8/FP8 forward, FP16 backward [2602.12675] |
| 训练 | 单阶段 fine-tune | 两阶段: Stage 1 init router+α; Stage 2 end-to-end diffusion loss [2602.12675] |
| 最大 sparsity | 95% (质量开始下降) [2509.24006] | 97% (质量仍超 baselines@90%) [2602.12675] |
| Kernel speedup | 13.7× [2509.24006] | 18.7× [2602.12675] |
核心进步的本质: SLA2 的 α-mixing 公式 $P_1 = \alpha \cdot P_s$ 是对 SLA formulation mismatch 的精确数学修正 [2602.12675]。SLA 的 linear projection 需要 jointly 学习两件事(补偿 scaling mismatch + 近似 low-rank complement),而 SLA2 通过显式引入 α 将第一件事解析化,linear branch 只需做第二件事——学习负担大幅降低。
| 维度 | SLA2 | LongCat-Video |
|---|---|---|
| 核心策略 | Sparse-linear 分解 + learnable router | 3D Block Sparse Attention (BSA) [2510.22200] |
| 理论基础 | Attention weight = high-rank sparse + low-rank dense [2602.12675] | Attention sparsity 天然存在于 spatial-temporal blocks [2510.22200] |
| 训练方式 | Fine-tune existing model (500 steps on 3000 videos) [2602.12675] | Pre-training + GRPO fine-tune [2510.22200] |
| 推理加速 | 18.7× attention, 2.3–4.35× end-to-end | 12.3× overall (coarse-to-fine + BSA) [2510.22200] |
| 适用模型 | Wan2.1 (1.3B, 14B) | LongCat 自有 13.6B 稠密 DiT [2510.22200] |
互补性: SLA2 在 attention 层面做 fine-grained token-level routing(哪些 QK 对走 sparse vs linear),LongCat 在 block-level 做 coarse-grained sparsity。两者可组合:先用 LongCat 的 coarse-to-fine 策略减少 denoising steps,再在每步内用 SLA2 的 sparse-linear 分解加速 attention。
Seedance 2.0 采用 dual-branch MMDiT 架构 [2604.14148],但论文未披露 attention 加速细节。SLA2 的 sparse-linear attention 是 Seedance 类生产模型可直接采用的即插即用加速模块——论文在 Wan2.1 上验证(与 Seedance 同属 DiT 视频生成赛道),>10× attention acceleration 对 Seedance 声称的 >10× overall acceleration [2604.14148] 是直接贡献者候选。
SLA2 在 video DiT attention 加速赛道中定位为 trainable sparse-linear hybrid:
| 方法类型 | 代表 | Sparsity 上限 | 训练需求 | 适用场景 |
|---|---|---|---|---|
| Training-free sparse | FlexPrefill, XAttention | ~70–80% | 0 | 快速部署,质量敏感 |
| Trainable sparse (block) | VMoBA, NSA | ~90–95% | Fine-tune | Block-level 稀疏性稳定的场景 |
| Trainable sparse-linear | SLA, SLA2 | 95–97% | Fine-tune | DiT video generation |
| Block sparse + RL | LongCat-Video BSA | ~60–80% | Pre-train + GRPO | 自有模型全栈优化 |
SLA2 的生态位优势在于 97% sparsity 仍保持质量,但限制在于需要 per-model fine-tuning(500 steps, 3000 videos)——不像 training-free 方法可即插即用。