Awesome LLM Research Collections
  • Home
  • Papers
    • Overview
    • Attention
    • LLMs
    • Multimodal LLMs
    • Embeddings
    • SFT
    • Training
    • Reinforcement Learning
    • Agents Application
    • Vision
    • Auto-Prompt
  • Notes
  • Blogs
  • English
  • 中文

Attention

Transformer internals, attention variants, KV/cache behavior, and depth-wise information flow.
中文

Research category

Transformer internals, attention variants, KV/cache behavior, and depth-wise information flow.

7Papers
17Resource links
2026.06Latest month
Attention Architecture

7 papers

Attention Architecture

2026.06 Attention Architecture

FlashMemory-DeepSeek-V4: Lightning Index Ultra-Long Context via Lookahead Sparse Attention

This paper proposes Lookahead Sparse Attention, which uses a separately trained neural memory indexer to predict future context needs and retain only query-critical KV chunks on GPU. FlashMemory reduces the physical KV cache footprint to 13.5% of full-context attention on average while preserving or slightly improving long-context accuracy.

Paper Code Hugging Face
2026.06 Attention Architecture

MiniMax Sparse Attention

This paper introduces MiniMax Sparse Attention, a blockwise sparse attention mechanism built on GQA that uses a lightweight Index Branch to select group-specific Top-k KV blocks before exact sparse attention. Co-designed GPU kernels turn the sparsity into large practical speedups at million-token context while maintaining performance close to dense GQA.

Paper Code Hugging Face
2026.05 Attention Architecture

GQLA: Group-Query Latent Attention for Hardware-Adaptive Large Language Model Decoding

This paper proposes Group-Query Latent Attention, a minimal MLA modification that exposes both MQA-absorb and GQA decoding paths from the same trained weights. The runtime can select the path that matches target hardware without retraining or custom kernels, enabling H100-style compressed decoding, H20-oriented GQA plus MTP, and up to 8-way zero-redundancy tensor parallelism.

Paper Code
2026.03 Attention Architecture

Attention Residuals

This work replaces fixed residual accumulation with attention over previous layer outputs, enabling input-dependent depth-wise aggregation and reducing PreNorm-induced representation dilution. It also introduces Block AttnRes for scalable training with lower memory and communication overhead.

Paper Project
2025.10 Attention Architecture

Kimi Linear: An Expressive, Efficient Attention Architecture

This paper introduces Kimi Linear, a hybrid architecture whose Kimi Delta Attention module combines fine-grained gating with an efficient chunkwise algorithm based on specialized diagonal-plus-low-rank transitions. A 48B-parameter model with 3B activated parameters outperforms full MLA under the same training recipe while reducing KV cache usage by up to 75% and delivering up to 6× decoding throughput at a 1M-token context.

Paper Code Hugging Face
2021.04 Attention Architecture

RoFormer: Enhanced Transformer with Rotary Position Embedding

This paper introduces Rotary Position Embedding (RoPE), which encodes absolute positions through rotations while making self-attention explicitly depend on relative positions. RoPE supports flexible sequence lengths, distance-aware dependency decay, and relative position encoding for linear self-attention.

Paper Code Hugging Face
2019.11 Attention Architecture

Fast Transformer Decoding: One Write-Head is All You Need

This paper introduces multi-query attention, sharing keys and values across attention heads to reduce the memory-bandwidth cost of incremental Transformer decoding. The variant speeds up decoding substantially while incurring only minor quality degradation relative to multi-head attention baselines.

Paper
  • View source
  • Report an issue