MoonshotAI/FlashKDA
Summary
FlashKDA is a high-performance implementation of Kimi Delta Attention (KDA) kernels built on CUTLASS, optimized for SM90+ GPUs and integrated with flash-linear-attention.
View Cached Full Text
Cached at: 07/29/26, 03:53 PM
MoonshotAI/FlashKDA
Source: https://github.com/MoonshotAI/FlashKDA
FlashKDA
FlashKDA: Flash Kimi Delta Attention — high-performance KDA kernels built on CUTLASS
News
- 2026-04-22 — Deep-Dive Blog: the design decisions behind FlashKDA v1, read it here.
Requirements
- SM90 and above
- CUDA 12.9 and above
- PyTorch 2.4 and above
Installation
git clone https://github.com/MoonshotAI/FlashKDA.git flash-kda
cd flash-kda
git submodule update --init --recursive
pip install -v --no-build-isolation .
By default, the build detects the current CUDA device and compiles for that architecture. For wheel or CI builds, compile all supported architectures explicitly:
FLASH_KDA_CUDA_ARCHS=all pip install -v --no-build-isolation .
Supported values are auto (default), all, or a comma-separated arch list such as 90a,100a.
Using FlashKDA as an FLA backend
Once installed, FlashKDA is auto-dispatched from flash-linear-attention’s chunk_kda. See fla-org/flash-linear-attention#852 for integration details.
Requirements
- Install
flash-linear-attention >= 0.5.0:pip install -U flash-linear-attention - Call
chunk_kdaundertorch.inference_mode()import torch from fla.ops.kda import chunk_kda with torch.inference_mode(): out, final_state = chunk_kda( q=q, k=k, v=v, g=g, beta=beta, scale=scale, initial_state=h0, output_final_state=True, use_gate_in_kernel=True, use_qk_l2norm_in_kernel=True, use_beta_sigmoid_in_kernel=True, safe_gate=True, A_log=A_log, dt_bias=dt_bias, lower_bound=lower_bound, transpose_state_layout=True, cu_seqlens=cu_seqlens, )
Opt out: set FLA_FLASH_KDA=0 to fall back to the Triton path.
Debug dispatch: add logging.basicConfig(level=logging.INFO) to see [FLA Backend] kda.chunk_kda -> flashkda on hit, or ... rejected: <reason> on miss.
Performance
See BENCHMARK_H20.md.
Tests
bash tests/test.sh
tests/test_fwd.py— correctness tests (exact match against the torch reference; compared withflash-linear-attention)
Kernel API
flash_kda.fwd
flash_kda.fwd(q, k, v, g, beta, scale, out, A_log, dt_bias, lower_bound,
initial_state=None, final_state=None, cu_seqlens=None)
Parameters:
| Parameter | Dtype | Shape | Description |
|---|---|---|---|
q | bf16 | [B, T, H, K] | Query |
k | bf16 | [B, T, H, K] | Key |
v | bf16 | [B, T, H, V] | Value |
g | bf16 | [B, T, H, K] | Gate before activation |
beta | bf16 | [B, T, H] | Beta logits (pre-activation; sigmoid applied internally) |
scale | float | scalar | scaling factor |
out | bf16 | [B, T, H, V] | Output tensor |
A_log | fp32 | [H] | Log-gate parameter |
dt_bias | fp32 | [H, K] | Gate bias |
lower_bound | float | scalar | Gate lower bound (range from -5.0 to 0) |
initial_state | bf16/fp32/None | [B, H, V, K] or [N, H, V, K] | (optional) Initial recurrent state |
final_state | bf16/fp32/None | [B, H, V, K] or [N, H, V, K] | (optional, output) Final recurrent state |
cu_seqlens | int64 | [N+1] | (optional) Cumulative sequence lengths for variable-length batching |
- Currently requires
K = V = 128. initial_state/final_stateacceptNone(stateless), bf16, or fp32 tensors. When both are provided, their dtypes must match.- When
cu_seqlensis provided,Bmust be 1,Tis the total length across all sequences, andinitial_state/final_statehave shape[N, H, V, K]. - When
cu_seqlensisNone, each batch element is treated as an independent sequence, and the state shape is[B, H, V, K].
Development
To set up IntelliSense (clangd) for the CUDA/C++ sources, run:
bash setup_clangd.sh
This generates a .clangd file with the correct repository paths and installs the global clangd config.yaml to ~/.config/clangd/.
Citation
@misc{flashkda2026,
title={FlashKDA: Flash Kimi Delta Attention},
author={Yutian Chen, Zhiyuan Li, Yucheng Wang, Ming Wei},
year={2026},
publisher = {GitHub},
howpublished = {\url{https://github.com/MoonshotAI/FlashKDA}},
}
Similar Articles
@Kimi_Moonshot: We're open-sourcing FlashKDA — our high-performance CUTLASS-based implementation of Kimi Delta Attention kernels. Achie…
Moonshot AI releases FlashKDA, an open-source CUTLASS-based implementation of Kimi Delta Attention kernels that delivers 1.72×–2.22× prefill speedup on H20 GPUs.
Moonshot open-sourced FlashKDA, CUTLASS kernels for Kimi Delta Attention, up to 2.22x over the Triton baseline on H20
MoonshotAI released FlashKDA, open-source CUTLASS kernels for Kimi Delta Attention that deliver up to 2.22x speedup over Triton on H20 GPUs.
Kimi-K3 Technical Report [pdf]
MoonshotAI releases Kimi-K3, a 2.8T-parameter open-weight multimodal agentic model with a 1M-token context window, built on new Kimi Delta Attention and Attention Residuals architecture, achieving significant scaling improvements.
@HotAisle: Kimi K2.6 + DFlash: 508 tok/s on 8x MI300X 5.6x throughput improvement over baseline autoregressive serving 90 tok/s → …
Kimi K2.6 paired with DFlash inference system achieves 508 tokens/s on 8×AMD MI300X, a 5.6× throughput jump from 90 tokens/s baseline with zero quality loss.
DualKV: Shared-Prompt Flash Attention for Efficient RL Training with Large Rollouts and Long Contexts
Introduces DualKV, a FlashAttention kernel variant that eliminates redundant prompt token computation in RL post-training (GRPO/DAPO), achieving up to 3.82x speedup on 30B MoE models.