The Information Machine

Transformer Attention: A Decade of Innovation Recognized by SemiAnalysis

open · v1 · 2026-06-29 · 22 items

What

SemiAnalysis published a community recognition thread on June 29, 2026, tracing transformer attention from the 2017 Multi-Head Attention paper through FlashAttention, PagedAttention/vLLM, and the current wave of linear and sparse attention architectures. [10] The thread identifies four major contributions: the foundational 2017 Transformer paper by Vaswani, Shazeer, Jones, Gomez and colleagues [1]; FlashAttention by Tri Dao, which cut GPU memory requirements and enabled long-context training [2]; vLLM's PagedAttention for inference serving [5]; and a recent wave of linear and sparse attention research driven by agentic AI's long-context demands, led by Gated Delta Networks (GDNs) and DeepSeek's sparse attention work. [6] GDNs, developed by Songlin Yang, have been adopted by Qwen 3.5, with Kimi building further improvements on top. [6]

Why it matters

Attention mechanisms are the architectural core of every major language model, and this thread maps which open-source contributions actually made large-scale training and inference practical for the broader community. The field has not converged on a single attention design: linear attention (GDNs) and sparse attention (DeepSeek DSA) are now competing approaches for the long-context workload that standard quadratic MHA cannot handle efficiently.

Open questions

  • Will Gated Delta Networks remain the dominant linear attention approach, or will the GDN-2 design's decoupled erase/write mechanism [9] become the new baseline in production models?

  • How will DeepSeek's Native Sparse Attention and DSA compare against linear attention in practice for agentic long-context tasks—neither camp has published head-to-head benchmarks at production scale. [6]

  • FlashAttention has reached version 4 and won the inaugural Stanford open source software award [4]—will future GPU architectures require yet another kernel redesign, or has the approach stabilized?

  • Which inference engines will natively support non-quadratic attention variants (GDNs, sparse) as those architectures move from research papers into production deployments? [5][6]

Narrative

The 2017 paper "Attention Is All You Need" by Ashish Vaswani, Noam Shazeer, Llion Jones, Aidan Gomez, and colleagues introduced Multi-Head Attention (MHA) to NLP and produced immediate, large improvements in perplexity scores over prior sequence models. [1] MHA became the dominant building block for language models, but its quadratic cost in sequence length created a ceiling on context length and on memory efficiency during training runs.

FlashAttention, developed by Tri Dao, addressed the memory bottleneck by restructuring attention computation to minimize GPU memory reads and writes rather than reducing FLOPs, cutting memory requirements for both forward and backward passes and enabling training on substantially longer contexts. [2] Three successive versions of FlashAttention have since been released, each targeting newer GPU architectures. [2][3] FlashAttention received the inaugural Stanford open source software award, a recognition of its practical impact across the community. [4] Around the same period, the vLLM inference engine introduced PagedAttention, a memory management approach that improved GPU utilization for serving. vLLM grew into one of the most widely used open-source inference engines, sustained by maintainers from Inferact and Red Hat. [5]

More recently, agentic AI applications requiring very long contexts drove a wave of research into architectural alternatives to quadratic MHA. Gated Delta Networks (GDNs), developed by Songlin Yang, combined the delta rule with gating mechanisms to allow more selective memory updates than earlier linear attention designs, and became the leading linear attention approach. [6][7][8] GDNs were adopted by Qwen 3.5, and Kimi built further refinements on top. [6] A follow-up paper, Gated DeltaNet-2, decouples the erase and write operations to further improve memory control. [9] In parallel, DeepSeek led open research into sparse attention with Native Sparse Attention and DeepSeek Sparse Attention (DSA), work that directly influenced related efforts at MiniMax and ZhipuAI. Cohere popularized SWA-GQA hybrid attention, which Xiaomi later analyzed with detailed ablation studies. [6]

SemiAnalysis framed this full arc as collective open-source progress, explicitly crediting individual researchers and teams rather than any single institution. [10] The thread positions attention research as an ongoing field where inference infrastructure (FlashAttention, vLLM) and architectural innovation (GDNs, sparse attention) have both been essential—and where no single design has yet displaced the others across all use cases.

Timeline

  • 2017: "Attention Is All You Need" by Vaswani, Shazeer, Jones, Gomez et al. introduced Multi-Head Attention (MHA) to NLP, dramatically improving perplexity scores. [1]
  • 2022: FlashAttention by Tri Dao reduced GPU memory requirements for attention forward and backward passes, enabling efficient long-context training. [2]
  • 2023: FlashAttention 2 published, achieving approximately 800% throughput improvement over the original FlashAttention. [3]
  • 2023: vLLM inference engine and its PagedAttention memory management mechanism became dominant open-source serving infrastructure. [5][11]
  • 2024-12: Gated Delta Networks paper published, combining the delta rule with gating to improve on Mamba2 as a linear attention design. [7][8]
  • 2025: FlashAttention versions 3 and 4 released, each optimized for newer GPU architectures including Hopper and Blackwell. [2]
  • 2025: FlashAttention received the inaugural Stanford open source software award. [4]
  • 2025: DeepSeek introduced Native Sparse Attention and DeepSeek Sparse Attention (DSA), with MiniMax and ZhipuAI building variants on top. [6]
  • 2025: Gated Delta Networks adopted by Qwen 3.5; Kimi built further improvements on top of the architecture. [6]
  • 2025: Cohere popularized SWA-GQA hybrid attention; Xiaomi later refined it with detailed ablation studies. [6]
  • 2026-05: Gated DeltaNet-2 paper published, decoupling erase and write operations to further improve linear attention memory control. [9]
  • 2026-06-29: SemiAnalysis published a community recognition thread crediting the open-source researchers and engineers behind the full arc of attention innovation. [10]

Perspectives

SemiAnalysis

Frames the history of transformer attention as collective open-source progress deserving explicit recognition; positions inference infrastructure and algorithmic research as equally important contributions to accessible high-performance AI.

Evolution: Consistent throughout the thread; no dissent or hedging.

Tri Dao (FlashAttention)

FlashAttention's memory-efficient kernel design was the key enabler of long-context training at scale; the approach has proven durable enough to span four GPU generations and win institutional recognition.

Evolution: Consistent; validated by the Stanford award and continued version releases.

Songlin Yang (GDN author)

Gated Delta Networks, combining gating with the delta rule, represent the strongest current approach to linear attention; the follow-up GDN-2 extends this further by separating memory erase and write.

Evolution: Consistent; GDN adoption by Qwen 3.5 and Kimi confirms traction beyond the paper.

DeepSeek

Sparse attention (Native Sparse Attention, DSA) is a practical and open path to long-context efficiency distinct from linear attention, and has already influenced MiniMax and ZhipuAI.

Evolution: Consistent; positioned as the leading alternative to the GDN approach.

vLLM project (Inferact, Red Hat maintainers)

Inference serving infrastructure—PagedAttention in particular—is as central to making AI broadly accessible as algorithmic research, and deserves recognition alongside model-side advances.

Evolution: Consistent; vLLM's status as one of the most widely used inference engines reinforces this position.

Cohere

SWA-GQA hybrid attention (sliding window combined with grouped query attention) is a practical architectural choice for long-context efficiency that avoids the complexity of full linear or sparse attention redesigns.

Evolution: Consistent; Xiaomi's adoption and ablation work confirms the design's influence beyond Cohere.

Tensions

  • Gated Delta Networks (linear attention) and DeepSeek's sparse attention (DSA, Native Sparse Attention) are competing architectural strategies for long-context efficiency; no head-to-head production benchmark has settled which approach is superior. [6][7]
  • Standard quadratic MHA remains the baseline all alternatives are measured against, but no single successor has fully displaced it across training, fine-tuning, and inference workloads. [6][2][1]
  • GDN-2 argues that decoupling erase and write in linear attention is necessary for better memory control, implying the original GDN design has a structural limitation—a claim not yet reflected in production model choices. [9][6]

Status: active but too new to trend

Sources

  1. [1] In contrast to the slow decline of the Transformers movie series in 2017, the Transformer architecture in NLP showed imm… — SemiAnalysis Twitter (2026-06-29)
  2. [2] One of the greatest leaps since MHA was FlashAttention by @tri_dao. FlashAttention dramatically reduced memory requireme… — SemiAnalysis Twitter (2026-06-29)
  3. [3] FlashAttention 2: making Transformers 800% faster w/o approximation — reactive:attention-mechanism-research-history
  4. [4] Flash Attention received the inaugural Stanford open source software award — reactive:attention-mechanism-research-history
  5. [5] Around the same time, the vLLM inference engine and its underlying Paged Attention took the open-source community by sto… — SemiAnalysis Twitter (2026-06-29)
  6. [6] The long-context demands of agentic AI accelerated attention research aimed at overcoming the context wall. Over the pas… — SemiAnalysis Twitter (2026-06-29)
  7. [7] Gated Delta Networks: Improving Mamba2 with Delta Rule | OpenReview — reactive:attention-mechanism-research-history
  8. [8] Paper page - Gated Delta Networks: Improving Mamba2 with Delta Rule — reactive:attention-mechanism-research-history
  9. [9] [2605.22791] Gated DeltaNet-2: Decoupling Erase and Write in Linear Attention — reactive:attention-mechanism-research-history
  10. [10] Transformer’s Attention mechanism has come a long way. We’d like to thank the researchers and the engineers in the open-… — SemiAnalysis Twitter (2026-06-29)
  11. [11] Paged Attention and vLLM | Continuum Labs — reactive:attention-mechanism-research-history