Flash-MSA:利用稀疏注意力内核加速百万级 Token 训练
Flash-MSA: Accelerating Million-Token Training with Sparse Attention Kernels

原始链接: https://nanduruganesh.github.io/flash-msa/

这篇文章介绍了首个开源、高性能的 **MiniMax 稀疏注意力(MSA)**训练内核,该内核使用 CuTeDSL 针对 NVIDIA Hopper (H100) 和 Blackwell (B200) GPU 进行了优化。 **核心技术亮点:** * **设计:** 与标准 Flash-Attention 不同,MSA 使用块级稀疏性(通过最大池化选择 KV 块)并采用 GQA 而非 MLA,使其能够兼容西方的前沿模型。 * **效率:** 该实现会在前向传播期间缓存块索引,确保只有初始的代理注意力与序列长度呈二次方关系。反向传播通过融合代理和主注意力梯度进行了优化,并利用数学技巧在不完全实现分布的情况下计算 KL 散度梯度。 * **性能:** 在各种配置下,这些内核相较于 PyTorch 的原生实现均达到了极高的余弦相似度(>0.998)。 * **未来规划:** 目前的开发重点在于提升反向传播的占用率、实现上下文并行(通过头维度的全收集或环形通信),以及探索跨层的索引共享以进一步加速训练。 这项工作为高效训练大规模稀疏模型提供了关键工具,有效弥合了专有推理技术与开源训练基础设施之间的差距。

该 Hacker News 帖子围绕近期发布的“Flash-MSA”展开,这是一种利用稀疏注意力内核(sparse attention kernels)加速百万级 token 模型训练的技术。 讨论很快从论文本身转向了高性能大语言模型的现状。用户 *kamranjon* 表达了对“Minimax M3”模型的兴趣,并推测了其本地推理的潜力及其与 Deepseek V4 和 GLM 5.2 等竞争对手的性能对比。 对话中还涉及了一场关于底层技术起源的简短争论。用户 *villgax* 通过链接到一个“native-sparse-attention”的 GitHub 仓库,质疑了 Flash-MSA 论文的创新性。然而,*kamranjon* 反驳了这一观点,指出 Minimax M3 的论文和发布时间非常新,这一年前的 GitHub 项目不可能是该特定架构的直接实现。
相关文章

原文

[Github] [MiniMax Paper] [Trainer]

plot Flash-MSA vs Flash-Attention isolated train step.

Several frontier models [1, 2, 3, 4, 5] use sparse attention to greatly speedup their inference, though no one has posted code to train it efficiently. Today I introduce the world's first performant open-source training kernels for Minimax Sparse Attention in CuTeDSL for Hopper and Blackwell GPUs. I did all of the dev work on Spheron H100 and B200 rentals and with the help of referencing FA4, MSA inference, and Codex.

Disclaimer: This is not an official implementation and I am not affiliated with MiniMax

About MSA

MSA is similar to Deepseek Sparse Attention, with some core changes

fig_1 Fig. 1 from the MSA Paper

1. Blockwise sparsity

Instead of the proxy attention selecting individual KVs for the main attention, it selects them in blocks of 128 using max-pooling over the proxy scores. This introduces some nice caching properties for the kernels.

2. GQA instead of MLA for the main attention

This one is particularly important because no western labs, to the best of my knowledge, have adopted MLA into their training, making the prevailing sparse attention formulation in frontier models like GLM-5.2, DSv4, which are fit to MLA, inaccessible to models here.

3. Group-wise specialization of proxy heads

Replacing MLA with GQA introduces independent groups of queries within each layer, giving us the option to select a different subset of KVs with each proxy head instead of summing and scoring for the entire attention layer like DSA does. There is some evidence suggesting attention heads organically attend to different tokens, so this change should increase main attention expressivity.

Kernel Design

fig_2 High level overview of kernel sequence

To run MSA efficiently we need to repeat as little work as possible and not overload the registers / shared memory too much. In addition to regular flash registers (Q tile, KV tile, O accumulator, LSE accumulator), we have to take into account streaming top-k accumulators in the forward. In the backward, we have to make space for a double-attention combined pass so we can calculate main attention grads and proxy attention grads, since proxy grads require access to both proxy and main attn probs. One nice benefit of block-sparsity is that since we only have to cache the indices of blocks instead of individual tokens like in DSA, it is feasible to store block indices all the way through until the backward - meaning in the entire train step, only the proxy forward is quadratic w.r.t. context length, everything else uses the cached sparse blocks from the proxy forward.

Forward

Order of operations is proxy attention -> sparse main attention -> send main attention output to next layer, save main LSE for backward.

Proxy attention

The proxy dot-product is a little different from regular Flash Attn as we don’t have to accumulate output anymore, but we do have to keep track of the top k attention scores and their respective indices as we stream across keys. Unlike Flash I also do not accumulate LSE for the backward and instead run a very cheap recompute of proxy dot-product over sparse activations to get the LSE during the backward. This was faster than fusing LSE+topk in the forward for me in practice. As each tile of QK^T is calculated, I grab the causal local max score for each chunk and do an insertion sort into the current top-k values for each query row, held in registers. I had to slice key blocks in half to make space for these top-k registers. Also, MSA dictates that the local block for each token must be unmasked sliding-window style, so I set the attention scores for the local KV block for each query to inf.

Main attention

The main attention is just a block-sparse flash attention forward. This has been done before in MoBA, so I copied their clever trick to re-parameterize block sparse attention into varlen flash.

Backward

To calculate gradients for the proxy heads, we need to fuse the proxy and main attention backwards because the proxy training signal requires access to both proxy attn probs and main attn probs at once.

Since we saved block indices from the forward and only train both attentions on the sparse KV activations, the backward can be run in linear time. First we pull our cached block_indices and invert the mapping of $B$[batch,proxy head,query,top_k_slot]->[key block] into $B^{\ast}$[batch,proxy head,key block]->[queries that use this block]. We use $B^{\ast}$ to schedule query chunks to optimize for reuse of shared sparse KV blocks.

Then we run a quick sparse proxy attention pass over the selected blocks (again using the MoBA varlen trick) to get the proxy LSE, then we stream the fused proxy-main backward tasks, loading chunks of QKV, Q_proxy, K_proxy, and main_lse. To account for loading so many heads into the registers we have to reduce the size of the Q chunks and KV chunks we use at a time. In each stream we calculate main and proxy attention probs, compute dQ,dK,dV, then compute proxy dQ,dK from the KL training term:

KL Divergence Loss

Recall the original KL loss term from DSA is $L^\iota = \sum_t{D_{KL}(p_t,s_t \Vert Softmax(I_t, s_t))}$

Materializing both indexer and main attn prob. distributions to accumulate KL divergence would require many read/writes to shared mem and usage of additional registers that would significantly slow down training. Fortunately, there is a trick we can use to backprop atomically and still be mathematically equivalent to a full KL loss.

With the proxy attn prob as $p_{px}$ and main attn prob as $p$, expand the KL term:

\[L^\iota = \sum_t{D_{KL}(p_t \Vert p_{px,t})} = \sum_t{p_t * log(\frac{p_t}{p_{px,t}})}\]

Use log rules to expand again:

\[L^\iota = \sum_t{p (log(p_t) - log(p_{px,t}))} = \sum_t{(p_t*log(p_t) - p_t*log(p_{px,t}))}\]

We want to calculate grads into the next latent which is the pre-softmax attention score at position i (not t), $z_{px,i}$

\[\frac{\partial L^\iota}{\partial z_{px,i}} = \frac{\partial}{\partial z_{px,i}}\sum_t{(p_t*log(p_t) - p_t*log(p_{px,t}))}\]

Main probs $p_t$ are detached from the proxy/KL-loss graph, so they are constant in this partial.

\[\frac{\partial L^\iota}{\partial z_{px,i}} = -\frac{\partial}{\partial z_{px,t}} \sum_t{p_t*log(p_{px,t})}\]

We know the softmax logprob partial of a softmax output at position t ($p_{px,t}$) w.r.t. pre-softmax logit ($z_{px,i}$) is $\frac{\partial log(p_{px,t})}{\partial{z_{px,i}}} = \delta_{it}-p_{px,i}$

\[\frac{\partial L^\iota}{\partial z_{px,i}} = -\sum_t{ p_t*(\delta_{it}-p_{px,i})} = -\sum_t{ p_t\delta_{it}} + \sum_t{p_tp_{px,i}}\]

Kronecker delta function $\delta_{it}$ is only nonzero at i==t, so $\sum_t{p_t\delta_{it}}=p_i$.

\[\frac{\partial L^\iota}{\partial z_{px,i}} = -p_i + \sum_t{p_tp_{px,i}} = -p_i + p_{px,i}\sum_t{p_t}\]

Because $p_t$ is a probability distribution, $\sum_t{p_t}=1$.

\[\frac{\partial L^\iota}{\partial z_{px,i}} = -p_i+p_{px,i}\]

In other words, gradient to proxy score from KL loss = proxy prob - main prob. This is the term I use in the kernel to calculate proxy gradients without needing to ever fully materialize KL.

Warmup kernels

In warmup mode, the main attention forward is dense and does not use block_indices, so the proxy forward can be skipped entirely, we can train it fully in the backward. For the main attention warmup forward kernel I just call flash and save its returned output and lse, and return a placeholder KL. In the backward I call dense flash on the indexer just to get the LSE, then reuse the fused proxy+main attention backward from the sparse MSA kernels.

Correctness

To verify correctness of the the kernel forward and backward, I implemented MSA in eager Pytorch and swept for cosine similarity between both implementations' forward outputs and backward grads over several configs. The sweep is run in bf16 precision and the backwards include both target output loss and the internal KL loss. Typically the tolerance for precision at bf16 is 0.01.

Eager vs. kernel cosine similarity
Batch Sequence Q heads Forward Backward projection gradients
Output Q K V Proxy Q Proxy K
14,09680.99960.99960.99960.99991.00001.0000
24,09680.99960.99960.99960.99991.00001.0000
44,09680.99960.99960.99960.99991.00001.0000
18,19280.99850.99850.99850.99950.99991.0000
28,19280.99850.99850.99850.99951.00001.0000
48,19280.99850.99850.99850.99951.00001.0000
14,096160.99960.99950.99950.99990.99991.0000
24,096160.99960.99960.99960.99991.00001.0000
44,096160.99960.99960.99960.99991.00001.0000
18,192160.99850.99840.99840.99970.99991.0000
28,192160.99850.99840.99850.99971.00001.0000
48,192160.99850.99840.99850.99971.00001.0000
14,096320.99960.99960.99961.00000.99991.0000
24,096320.99960.99950.99961.00000.99991.0000
44,096320.99960.99950.99961.00001.00001.0000
18,192320.99850.99830.99840.99980.99991.0000
28,192320.99850.99840.99840.99980.99991.0000

What’s next

Increasing Fused Backward Parallelizability

Currently the backward is bound by low tensor-pipe utilization and low occupancy from the fused backward's heavy register/shared memory requirements needed to run 2 attentions at once. For example, for the throughput sweep in this blog, Flash-MSA backward used 138 registers/thread, 105 KB shared memory/CTA, meanwhile H100s/B200s support a max of 255 reg/thread and 228 KB shared memory/CTA so I was bound to 1 CTA/SM. To increase eligible warps I tried different configs of tiling Q/KV more narrowly to achieve 2 CTAs/SM but the increased total CTAs from doing this created a net slowdown. The theoretical occupancy of the Flash-MSA backward is 12.5% compared to 18.75% in Flash-Attention.

Router architectural speedups

GLM has already proved it is stable and much faster to use IndexShare to share proxy heads across layers. Also, the indexer seems to always be served in low-precision during inference, so training it in low precision could help address train-inference matching and speed up training greatly if it was stable.

Context parallelism

To scale LLM training at long context, some form of CP is mandatory or the trainer will quickly run out of memory. There are a few options here

1. Headwise all-gather

For clarity I will refer to an “MSA group” of attention heads as the subset of main attn query heads assigned to each proxy query head. Since MSA groups run independently of each other in both fwd/bwd, it is trivial to use TP-style CP folding for CP rank up to num_proxy_heads, where each device holds (Seq len / CP rank) tokens and its MSA group(s), then does an A2A comm of the full sequence before calling MSA. This requires no changes to the kernels, in fact, you could probably do this right now in the current Megatron MSA fork.

2. Ring

Implementing Ring-style parallelism here is more difficult but probably the optimal way of doing CP for MSA as it allows for better overlap and higher CP rank than a2a. Ring would require something like overlap-exchange within the proxy forward with a way to stream the top-k values and indices across devices, then broadcast back to all devices, then a clever sparse-key host device lookup and retrieval for the main attention across devices. I do not know how to wire this into the kernel so I will have to contact my local CP expert before putting out this core feature, but if anything this will be the next blog post.

Note about joint indexer-main attention training

While the paper does include a formulation of MSA where a value and output proj are added to the proxy head then the proxy output is added to the main attention’s output to introduce grads from CE loss into the proxy weights and allegedly boost knowledge-type evals, implementing this will slow down training from adding new heads and accumulators to the fwd/bwd. MSA also states themselves in Table 6 of their paper that proper warmup can make up for not training the indexer with CE loss.

Note about scheduler requiring proxy heads ≥ KV heads

Since I schedule by mapping each proxy head to its respective main attention GQA group, the current kernels require that MSA groups >= GQA groups. There is probably a simple way to invert the mapping for the scheduler/fused backward, but this would only be needed in cases where the model has more KV heads than proxy heads. However I expect stable training to require at least 4 MSA groups so to have KV heads>proxy heads you'd need >4 GQA groups and in this current regime of transformers I have a strong contempt for models with >1024 KV cache/layer so I am not interested in implementing this path.

Sweep across Top-k

I thought it would be interesting to visualize the sparsity benefit as blocks decrease. I want to do some more sweeps across GQA and proxy MQA configurations when I get compute. I would also like to continued pre-train an existing GQA base model like Qwen3 using MSA to test the conversion, this will require some more compute.

topk_sweep

Top-k sweep done with same config as the MSA vs. FA sweep.
联系我们 contact @ memedata.com