AdaptiveLoad:面向高效视频扩散Transformer训练
TLDR
AdaptiveLoad通过双约束负载均衡和融合内核优化视频扩散Transformer训练,吞吐量提升27.2%。
评分理由
The paper addresses a critical computational bottleneck in training video diffusion transformers for world models, proposing a novel load balancing system and fused CUDA kernel. Strengths include clear problem identification and significant empirical gains on a real-world model (Wan 2.1). Weaknesses are limited generality (single architecture) and lack of comparison to other advanced scheduling methods.
Read-first 评分解释
综合优先阅读分 54,由主题、引用、图谱、方法、可复现性和近期性等信号加权得到。 原始总分保留为 35。
研究版图角色
排序敏感性
稳定性:volatile;排名波动范围:244。
关键词评分
深度分析
创新点
- 双约束自适应负载均衡系统,通过 B × S^p ≤ M_comp 同时限制内存消耗和计算负载
- 融合 LayerNorm-Modulate CUDA 内核,采用 D-tile 合并归约策略提升吞吐量并缓解内存压力
方法
AdaptiveLoad 是一个用于训练视频扩散 Transformer 的集成优化框架,包含两个组件:(1) 双约束自适应负载均衡系统,通过同时约束内存和计算(B × S^p ≤ M_comp)消除长序列瓶颈;(2) 融合 LayerNorm-Modulate CUDA 内核,使用 D-tile 合并归约策略。该方法在 Wan 2.1 世界模型上进行了评估。
关键结果
该方法将计算不平衡率从 39% 降低到 18.9%,峰值显存利用率提升 22.7%,在 Wan 2.1 世界模型上整体训练吞吐量提升 27.2%。