Mixture-of-Attention

  • Last Updated 31 May, 2026
  • by David Spuler, Ph.D.

What is Mixture-of-Attention?

Mixture-of-Attention (MoA) is the application of the Mixture-of-Experts (MoE) optimization to the attention modules in LLM layers. Traditionally, MoE has been used to optimize the Feed-Forward-Network (FFN) in LLMs, and this has become a mainstream optimization of frontier model architectures. However, although attention is less compute-bound than FFNs, the same ideas can be applied to make the QKV attention module more efficient.

This technique is not yet mainstream, and appears mostly in research papers. Some of the earliest works date back to 2019 and 2020, and various papers have used different names:

  • Mixture-of-Attention (MoA)
  • Mixture of Attention Extenders (MAE)
  • Mixture of Heads (MOH)

There is some overlap with other attention optimization research areas, such as:

  • Sparse attention
  • Attention head pruning
  • Attention head fusion

However, like MoE for FFNs, MoA for attention heads has dual aims:

  • Attention module optimization — faster.
  • More parameters possible in attention — smarter.

This area has a lot of potential and seems to be getting some more research, but it's not as prolific as some other types of attention optimization, such as sparse attention or KV cache compression.

Mixture-of-Attention: Book Excerpts and Blog Articles

Free online book excerpts with full text chapters online and free PDF downloads, and the Aussie AI blog, including related articles:

Survey Papers on Mixture-of-Attention

Research on Mixture-of-Attention

Research papers include:

More AI Research Topics

Read more about: