The Kimi Team (including Guangyu Chen, Yu Zhang, Jianlin Su, Weixin Xu, Siyuan Pan, among 34 authors in total) released a new paper on March 16, 2026: Attention Residuals.
The Core Problem
Modern LLMs universally use PreNorm + fixed-weight residual connections. Each layer's output is added with weight 1 to the next layer, which causes:
- Hidden states to grow without control as depth increases
- Each layer's contribution to be uniformly diluted
- Imbalanced gradients, with deep-layer information drowned out by shallow layers
- Instead of directly adding the previous layer's output, each layer performs attention over the outputs of all preceding layers.
- The weights become input-dependent and learnable, letting the model decide "which layer's representation it needs most right now."
- Completely solves the PreNorm dilution problem
- More uniform output magnitudes per layer and more balanced gradient distribution
- Significantly improved scalability with depth
- Layers are divided into blocks
- Attention is performed only at the block level
- Combined with a cached pipeline communication + two-stage computation strategy
- Scaling-law experiments: consistent improvements across model sizes
- Ablation studies: confirm that "content-dependent depth selection" is what drives the gains
- Real-world deployment: integrated into the Kimi Linear architecture (48B total parameters, 3B activated) and pretrained on 1.4 trillion tokens
- Successfully mitigates PreNorm dilution
- Improvements across all downstream tasks
The Key Idea: Attention Residuals (AttnRes)
The authors propose replacing the fixed residual with softmax attention:
Benefits:
Practical Optimization: Block AttnRes
Full attention over all preceding layers brings large memory and communication overhead, especially under MoE / pipeline parallelism. The authors propose Block AttnRes:
This keeps overhead nearly identical to ordinary residuals while retaining most of the benefits — genuinely deployable for large-scale training.
Experimental Validation
TL;DR
The paper upgrades the residual connection from a rigid addition to an intelligent, attention-based selection, offering an elegant and practical new approach to scaling Transformer depth. The Kimi team validated it all the way up to a 48B pretrained model — high-quality work.