decoder-only-scaling-requires-comprehensive-efficiency-stack

IN derived (depth 3)

Created 2026-06-21T09:57:37+00:00 · Reviewed 2026-06-21T14:41:08+00:00

The decoder-only architecture won the scaling race through data volume advantage, but its quadratic attention cost means this dominance is only practically sustainable through the comprehensive efficiency stack (Flash Attention, PagedAttention, speculative decoding, MoE).

Justifications

SL — decoder-only dominance creates the very scaling demand that drives the efficiency stack

Antecedents (all must be IN):

  • IN decoder-only-dominance-driven-by-data-scaling-advantage — Decoder-only architectures became dominant in the scaling era, coinciding with evidence that data volume matters more than parameter count for model performance. Autoregressive next-token prediction's ability to leverage massive unsupervised text corpora may have been a contributing factor in this dominance.
  • IN quadratic-attention-spawned-comprehensive-efficiency-stack — Self-attention's O(n²) complexity is a primary driver of efficiency research, motivating both sub-quadratic algorithmic alternatives (sparse/linear variants, Performers) and a multi-layer practical optimization stack spanning algorithmic (speculative decoding), memory (PagedAttention), and compute (FlashAttention) approaches.

Dependents

These beliefs depend on this one: