Essay · Part I of II · ~35 min read

The Leap of Sparse Attention in Transformers

Part I — The Principled Lineage

Ask what “sparse attention” means today and you will mostly hear top‑k or a block mask. That is the visible tip of a decade‑long research programme that modern work keeps re‑discovering — and rarely cites. This first part rebuilds the lineage from the math up: how attention learned to output exact zeros, why that turns out to be the right thing to do at long context, and how it all collapses into a single old idea — kernel regression.

sparsemaxFenchel–Youngα‑entmax dispersionkernel regression

Notation: a query attends to \(n\) keys with scores \(s\in\mathbb R^n\); a normalizing map \(\pi\) turns \(s\) into weights \(p\) on the probability simplex \(\triangle^{n}=\{p\ge 0,\ \mathbf 1^\top p=1\}\). Every transformation below is a different choice of \(\pi\).

1. What we talk about when we talk about sparse attention

The transformer’s attention layer computes a weighted average of value vectors, where the weights come from a softmax over query–key scores (Vaswani et al., 2017). Softmax has one stubborn property: it never assigns exactly zero weight to anything. Every token, however irrelevant, gets a positive slice of the average.

Around 2023–2025, as context windows exploded, the community rediscovered that this is wasteful and started bolting on sparsity: keep the top‑\(k\) scores, mask everything else, and call it sparse attention. That works, but it treats sparsity as a post‑hoc heuristic applied to a fundamentally dense model. It also quietly reinvents ideas that were worked out — with proofs — years earlier, under names like sparsemax, fusedmax, and α‑entmax.

Below, four ways to turn the same score vector into attention weights. softmax spreads mass everywhere; top‑k keeps \(k\) and renormalizes with a hard, non‑differentiable cut; sparsemax and α‑entmax produce exact zeros too — but differentiably, and they choose how many tokens to keep based on the scores themselves.

Four maps, one score vector

The same query–key scores under four normalizers. Watch which tokens survive.

softmax (dense) top‑k sparsemax α‑entmax (1.5)
4

Fig. 1. softmax gives all 11 tokens nonzero weight. top‑k keeps exactly \(k\) (you choose), then renormalizes — a hard, input‑independent count. sparsemax and α‑entmax keep a data‑dependent number of tokens and send the rest to exact zero, with no \(k\) to tune. The rest of this essay is about why that difference matters.

2. The dense default and its discontents

Softmax turns scores into weights by exponentiating and normalizing:

$$ \operatorname{softmax}(s)_i \;=\; \frac{e^{s_i}}{\sum_{j=1}^n e^{s_j}} \;=\; e^{\,s_i-\tau}, \qquad \tau \;=\; \log\!\sum_{j=1}^n e^{s_j}. $$

The normalizer \(\tau\) is just the log‑sum‑exp — a smooth, closed‑form quantity. This is exactly why softmax is so friendly to GPU kernels: \(\tau\) is a single stable reduction along each row, computable in one streaming pass. It is also why softmax is dense: because \(e^{x}>0\) for all \(x\), we have \(\operatorname{softmax}(s)_i>0\) for every token \(i\), no matter how small its score (Martins & Astudillo, 2016).

For short sequences this is harmless. But as \(n\) grows, that guaranteed‑positive mass has to be shared among more and more tokens. The weight on the single most relevant key shrinks, and the output average is increasingly diluted by a long tail of near‑zero — but nonzero — contributions. Drag the context length below and watch the peak weight collapse.

Softmax mass spreads thin

One clearly-winning token among \(n-1\) distractors, under softmax. As \(n\) grows, the winner’s share falls.

32
peak weight
entropy (nats)

Fig. 2. Even with a fixed score gap between the winner and the field, softmax’s peak weight decays roughly like \(\mathcal O(1/n)\) and its entropy grows like \(\log n\). Section 8 makes this precise — and shows it is not just wasteful but provably limiting.

3. Differentiable zeros: sparsemax (2016)

The first crack in the dense default came from a beautifully simple idea (Martins & Astudillo, 2016): instead of exponentiating, just take the Euclidean projection of the scores onto the probability simplex.

$$ \operatorname{sparsemax}(z) \;=\; \operatorname*{arg\,min}_{p\in\triangle^{n}} \; \lVert p - z\rVert_2^2 . $$

Projecting onto the simplex is a constrained least‑squares problem, and its solution is a soft‑threshold: subtract a constant \(\tau(z)\) from every score and clip negatives to zero,

$$ \operatorname{sparsemax}(z)_i \;=\; \big[\,z_i - \tau(z)\,\big]_+ ,\qquad [x]_+ = \max(0,x), $$

where \(\tau(z)\) is chosen so the surviving entries sum to one. Concretely, if \(S=\{i: z_i>\tau(z)\}\) is the support, then summing the constraint gives a closed form for the threshold:

$$ \tau(z) \;=\; \frac{\big(\sum_{j\in S} z_j\big) - 1}{|S|}. $$

Everything below the waterline \(\tau(z)\) is set to exactly zero. Unlike top‑\(k\), the size of \(S\) is not a hyperparameter — it falls out of the geometry of \(z\). And crucially, the map is differentiable almost everywhere, with a cheap Jacobian supported only on \(S\):

$$ \frac{\partial \operatorname{sparsemax}(z)}{\partial z} \;=\; \operatorname{diag}(\mathbf s) - \frac{\mathbf s\,\mathbf s^\top}{|S|}, \qquad \mathbf s_i = \mathbb 1[\,i\in S\,]. $$

Below: the same soft‑threshold picture. Raise the scores as lollipops, drop the waterline \(\tau\), and read off the survivors. This is the whole mechanism.

The soft‑threshold waterline

sparsemax as projection: everything above \(\tau(z)\) survives (shifted down by \(\tau\)); everything below is zeroed.

threshold τ(z)
support |S|
tokens zeroed

Fig. 3. The support \(S\) is exactly the set of scores poking above the waterline. Slide the whole score vector up/down — the number of survivors changes with the data, never by a fixed \(k\).

0.0

Why the projection is exact and fast

Finding \(\tau(z)\) means finding how many entries stay positive. Sorting \(z\) and scanning gives an \(\mathcal O(n\log n)\) algorithm; Condat (2016) gives an exact, finite‑time projection by online variable‑fixing that empirically beats sort‑, heap‑, partition‑, and bisection‑based competitors. This projection is the workhorse under sparsemax — and, via its cousins (an exact sort for \(\alpha=1.5\), bisection for general \(\alpha\), Part II’s GPU solvers), under everything else in this essay: it is how a network emits calibrated zeros without abandoning gradients.

sparsemax also comes with its own loss for training classifiers — a piecewise‑quadratic that behaves like a multi‑class Huber loss — but the attention story only needs the map itself. The deeper question is: why this map? Is the Euclidean projection special, or one member of a family? That question is what turned a clever trick into a theory.

4. Sparsity as a family: regularized argmax & Fenchel–Young

Here is the unification (Niculae & Blondel, 2017). Both softmax and sparsemax solve the same optimization problem — maximize expected score, minus a regularizer \(\Omega\) that pulls the solution toward the interior of the simplex:

$$ \Pi_\Omega(s) \;=\; \operatorname*{arg\,max}_{p\in\triangle^{n}} \; \langle p, s\rangle \;-\; \Omega(p). $$

The choice of \(\Omega\) is the whole design space:

  • Shannon negative entropy \(\Omega(p)=\sum_i p_i\log p_i\) recovers softmax.
  • The squared norm \(\Omega(p)=\tfrac12\lVert p\rVert_2^2\) recovers sparsemax.
  • A total‑variation penalty \(\Omega(p)=\tfrac12\lVert p\rVert^2 + \lambda\sum_i|p_{i+1}-p_i|\) yields fusedmax, which produces contiguous, group‑sparse attention.

The reason softmax is dense and sparsemax is sparse is now visible: it is the behaviour of \(\Omega\)’s gradient at the boundary. Shannon entropy’s derivative, \(\log p_i + 1\), blows up to \(-\infty\) as any \(p_i\to 0\), so moving off a face always improves the objective — the optimum is pushed strictly inside the simplex (no zeros). The squared norm has a finite gradient at the boundary, so the optimum can — and does — sit on a face where some \(p_i=0\).

Blondel et al. (2020) completed the picture with Fenchel–Young losses. For any convex \(\Omega\) with convex conjugate \(\Omega^\ast\), define

$$ L_\Omega(s; y) \;=\; \Omega^\ast(s) + \Omega(y) - \langle s, y\rangle \;\ge\; 0, $$

which, for strictly convex \(\Omega\), is zero exactly when \(y = \Pi_\Omega(s)=\nabla\Omega^\ast(s)\). This single template generates softmax + cross‑entropy, sparsemax + sparsemax‑loss, and more, as special cases. And it delivers the pivotal theorem: for the separable entropies used throughout this essay (the whole Tsallis family), \(\Pi_\Omega\) can produce sparse outputs if and only if the induced loss has a separation margin — a finite score gap beyond which the loss is exactly zero, and for α‑entmax that margin is exactly \(1/(\alpha-1)\). Sparsity in the forward map and a margin in the loss are the same phenomenon.

The transfer function: how \(\Omega\) makes zeros

Two logits \((z_1,z_2)\). Plot the output weight \(p_1\) as the gap \(z_1-z_2\) varies.

softmax — smooth, never 0 or 1 sparsemax — hits 0 / 1 at a finite gap α‑entmax (1.5) — in between

Fig. 4. softmax’s transfer curve is a logistic that only approaches 0 and 1 asymptotically — full support forever. sparsemax saturates to exactly \(0\) and \(1\) once the score gap exceeds a finite margin, equal to \(1/(\alpha-1)\): gap \(1\) for sparsemax, gap \(2\) for α‑entmax‑1.5 (dashed lines); α‑entmax sits between softmax and sparsemax. That flat region where \(p_1=0\) is a token being ignored — differentiably.

5. One knob: α‑entmax (2019)

If \(\Omega\) is a dial, why stop at two settings? Peters et al. (2019) instantiated the family with Tsallis \(\alpha\)-entropies, a one‑parameter generalization of Shannon entropy:

$$ H^{\mathsf T}_\alpha(p) \;=\; \frac{1}{\alpha(\alpha-1)}\Big(1 - \sum_i p_i^{\alpha}\Big),\qquad \alpha>1, $$

which recovers Shannon entropy as \(\alpha\to1\). Plugging \(\Omega = -H^{\mathsf T}_\alpha\) into the regularized‑argmax gives the α‑entmax transformation, with the same threshold structure as sparsemax but a tunable exponent:

$$ \alpha\text{-entmax}(z)_i \;=\; \big[(\alpha-1)\,z_i - \tau\big]_+^{\,1/(\alpha-1)}, $$

with \(\tau\) again set so the weights sum to one. The knob \(\alpha\) interpolates a whole spectrum:

  • \(\alpha=1\): the exponent blows up into an exponential — softmax (dense).
  • \(\alpha=2\): the exponent is \(1\) — \([z_i-\tau]_+\), i.e. sparsemax.
  • any \(\alpha>1\) is sparse — heavier tails as \(\alpha\downarrow 1\), harsher selection beyond \(2\). \(\alpha=1.5\) is the popular middle ground and admits an exact \(\mathcal O(n\log n)\) sorting algorithm; general \(\alpha\) uses bisection on \(\tau\).

Its Jacobian is as cheap as sparsemax’s (supported on the survivors), so it drops into a transformer with no change to backprop. Slide \(\alpha\) below and watch the support tighten from “everything” (softmax) to a handful (sparsemax).

The α dial

One parameter from dense to sparse, on the same 11 tokens.

1.50
1.0 · softmax1.5 · entmax‑1.52.0 · sparsemax
tokens kept
entropy

Fig. 5. α‑entmax is the backbone of the rest of this story: a differentiable, input‑adaptive sparse attention with a single interpretable knob. Everything downstream — learnable sparsity, the dispersion cure, the kernel view, and the fast kernels of Part II — is built on it.

The through-line so far

A regularizer \(\Omega\) determines a normalizing map; its boundary gradient decides dense vs. sparse; a margin in the matching Fenchel–Young loss is the same thing as zeros in the map; and Tsallis entropy makes the whole spectrum a single knob \(\alpha\). None of this needed a large language model to motivate it — it was all in place by 2019. The next sections show what you can do with the knob.

6. Shaping the support: structured, constrained, learnable, stochastic

Once sparsity is a differentiable design choice, you can ask for more than “some tokens are zero.” You can control which tokens, how many, and even make the shape learnable. Four directions, all pre‑LLM, all with closed‑form gradients.

Structured — contiguous attention (fusedmax)

Add a total‑variation penalty to sparsemax’s regularizer to reward contiguous supports (Niculae & Blondel, 2017):

$$ \operatorname{fusedmax}(z) = \operatorname*{arg\,max}_{p\in\triangle^{n}}\ \langle p,z\rangle - \tfrac12\lVert p\rVert_2^2 - \lambda\!\sum_{i} |p_{i+1}-p_i|. $$

The TV term glues neighboring weights into flat plateaus, so attention selects segments (phrases, spans) rather than scattered tokens — with a group‑averaging Jacobian that is still cheap. Increase the fusion strength \(\lambda\) below and watch adjacent tokens merge.

fusedmax: sparsity with contiguity

sparsemax gives scattered zeros; adding a TV penalty fuses neighbors into contiguous groups.

0.30
distinct groups

Fig. 6. At \(\lambda=0\) this is plain sparsemax. As \(\lambda\) grows, contiguous tokens are forced to share a weight, collapsing the support into a few segments — a structured prior baked into the normalizer itself.

Constrained — budgeted attention

You can also cap how much any single token receives. Constrained sparsemax (Malaviya et al., 2018) solves the projection under an extra upper bound, \(p_i \le u_i\):

$$ \operatorname*{arg\,min}_{p\in\triangle^{n}}\ \tfrac12\lVert p - z\rVert_2^2 \quad\text{s.t.}\quad \mathbf 0 \le p \le u, $$

solvable in \(\mathcal O(n)\) by the Pardalos–Kovoor algorithm. In machine translation the bound acts as a fertility budget: it stops the model from dumping all its attention on one source word, curing the classic coverage failures (source words dropped, target words repeated) directly in the attention map.

Learnable — a different \(\alpha\) per head

Why fix \(\alpha\) at all? Adaptively Sparse Transformers (Correia et al., 2019) make \(\alpha\) a learned parameter per attention head. Because \(\partial\,\alpha\text{-entmax}/\partial\alpha\) has a closed form, each head slides along the dense↔sparse spectrum by gradient descent — some heads stay near softmax to integrate broadly, others sharpen toward argmax to point at a single token, all “at no cost in accuracy,” improving head diversity and interpretability.

Stochastic — the other road to zero

There is a parallel, older lineage that reaches sparsity by sampling rather than projection. Soft vs. hard attention appeared in image captioning (Xu et al., 2015): soft attention is the deterministic expected glimpse; hard attention samples a single location and trains with REINFORCE. Later, reparameterized discrete gates — HardKuma (Bastings et al., 2019), built on the Gumbel‑softmax (Jang et al., 2017) and \(L_0\) relaxations (Louizos et al., 2018) — place probability mass on exact 0 and 1, giving stochastic sparse selection under a Lagrangian budget on the expected number of active tokens. The same machinery resurfaces years later inside KV‑cache gating (Part II).

7. Letting content choose the support (2019–2020)

Everything so far decides sparsity after computing all the scores. But if most tokens will be zeroed anyway, why compute their scores at all? The pre‑LLM efficient‑attention era — the one modern long‑context papers rarely cite — is precisely about deciding connectivity from content, before the full \(QK^\top\). Two philosophies emerged.

Fixed patterns

Hard‑wire a sparse graph with \(\mathcal O(n\sqrt n)\) or \(\mathcal O(n)\) edges. Sparse Transformers (Child et al., 2019) factorize attention into strided + local patterns with \(|A_i|\!\sim\!\sqrt n\). Longformer (Beltagy et al., 2020) combines a sliding window with a few global tokens; Big Bird (Zaheer et al., 2020) adds random edges and proves the result is a universal approximator and Turing‑complete. Robust and kernel‑friendly — but the graph is chosen a priori, blind to the data.

Content‑based routing

Let the tokens cluster themselves. The Reformer (Kitaev et al., 2020) hashes queries and keys with angular LSH, \(h(x)=\arg\max\big([\,xR;\,-xR\,]\big)\) for a random projection \(R\), so a query only attends within its bucket — \(\mathcal O(n\log n)\), plus reversible layers for depth‑independent memory. The Routing Transformer (Roy et al., 2021) runs online spherical \(k\)‑means on \(\ell_2\)‑normalized queries/keys, so that “only queries and keys from the same cluster are considered for attention” — an \(\mathcal O(n^{1.5}d)\) approximation of maximum‑inner‑product search.

The sparse‑attention connection people miss

Sparsefinder (Treviso et al., 2022) closes the loop between this section and the last one. α‑entmax has a sparse‑consistency property: masking entries that are already provably zero leaves the entmax output unchanged. So you can learn to predict the entmax support from cheap low‑dimensional projections of the queries and keys — routing, but supervised by the exact sparse pattern the model would have produced anyway. Content‑based efficiency and principled sparsity turn out to be the same problem.

Below, the zoo of connectivity patterns as \(n\times n\) masks: which keys (columns) each query (rows) is allowed to see. This is the vocabulary Part II’s “native sparse attention” methods inherit.

A gallery of sparse connectivity

Rows = queries, columns = keys. Teal = an edge that is computed; blank = skipped.

edges computed

Fig. 7. Fixed patterns (local, strided, global, random) fix the graph regardless of input; content clustering (right) groups tokens by what they are. Density is what turns into wall‑clock savings — if the kernel can skip the blanks, which is exactly the hardware problem Part II solves.

8. Why dense softmax breaks at length (2024–2025)

For years, sparse attention was sold on efficiency. Then a wave of theory reframed it as a matter of capability: dense softmax does not just waste compute at long context — it is provably unable to do certain things. This is the intellectual turn that vindicated the whole 2016–2019 lineage.

Dispersion

With all logits bounded in \([m,M]\), every softmax weight is squeezed toward uniform as the sequence grows (Veličković et al., 2025):

$$ \tfrac1n\,e^{\,m-M} \;\le\; \operatorname{softmax}(s)_k \;\le\; \tfrac1n\,e^{\,M-m}, \qquad\text{i.e.}\qquad \operatorname{softmax}(s)_k = \Theta\!\left(\tfrac1n\right). $$

And boundedness is not an assumption you can train away: with inputs from a finite vocabulary, every layer maps compact sets to compact sets, so the logits are bounded. The consequence is stark: “even for tasks as simple as finding the maximum key, any learned circuitry must disperse as the number of items grows at test time.” A model that must stay sharp at length cannot, if its weights are forced to be everywhere‑positive. Push the limit further and the pathology deepens: as the prompt grows, softmax attention provably converges to a linear attention operator — not just blunted, but with its nonlinearity washed out (Boursier & Boyer, 2026).

Collapse & over‑squashing

Relatedly, Barbero et al. (2024) prove representational collapse: take a long sequence and the same sequence with its final token repeated, and their final‑token representations become arbitrarily close as length grows — eventually indistinguishable at floating‑point precision, so the model provably cannot respond to them differently. The engine is softmax itself: the total‑variation distance between the two attention distributions tends to zero as the sequence grows (their Lemma 4.1); decaying positional information does the rest. They also formalize over‑squashing: the sensitivity of an output to a distant input is bounded by a sum over weighted causal attention paths, which thins out with distance and depth. Both are pathologies of a distribution that is not allowed to be zero anywhere.

There is a documented failure at the opposite end, too. Zhai et al. (2023) show that too‑sharp attention — “entropy collapse” — travels with training instability, and their remedy (σReparam) works by capping the spectral norm of the logits. Read the two results together and softmax is squeezed from both sides: its attention entropy is lower‑bounded in terms of the logit scale, so the only way it can be sharp is through extreme logits — precisely the regime that destabilizes training — while at bounded logits it must disperse. α‑entmax dissolves the dilemma: it reaches exact sharpness — even one‑hot — at finite, moderate logits, the margin of §4 made kinetic.

Patch the softmax, or replace it?

One camp keeps softmax and rescales. Scalable‑Softmax multiplies the logits by \(s\log n\) (Nakanishi, 2025); Veličković et al. tune an adaptive temperature at inference (2025); scale‑invariant attention derives a position‑dependent logit transform (Anson et al., 2025); entropy‑invariance reaches the same place from an information‑theoretic argument (Li et al., 2025). Four papers, four principles, one medicine — a length‑dependent temperature. That convergence says the diagnosis is right; it also says the treatment is palliative, because a colder softmax thins the tail without ever removing it.

The model’s own coping strategy points the same way. Attention sinks — the notorious pile of mass on the first token — turn out to be softmax’s pressure valve: heads park probability they are forced to spend somewhere on a semantically useless token, which provably slows the over‑mixing of everything else (Barbero et al., 2025). The folk remedy of adding \(1\) to softmax’s denominator so heads can attend to nothing — “softmax‑1” (Miller, 2023) — is the same escape hatch built by hand, and OpenAI’s gpt‑oss now ships learned per‑head sink logits (OpenAI, 2025). A model that invents a place to dump unwanted probability is a model asking for zeros. Some do abandon the simplex altogether — sigmoid attention drops normalization (Ramapuram et al., 2025), Softpick rectifies softmax so sinks vanish (Zuhri et al., 2025), stick‑breaking replaces it with a recency‑biased cascade (Yang et al., 2025) — a genuine “replace” camp, though one that gives up the convex‑duality toolbox of §4 along with the simplex.

Our camp keeps the simplex and fixes the support. With α‑entmax, irrelevant tokens get exact zeros, so the entropy of attention is bounded by the support size \(s\), not the sequence length — \(\mathcal O(\log s)\) instead of \(\mathcal O(\log n)\) — and the number of effective gradient paths shrinks from \(\mathcal O(n^L)\) to \(\mathcal O(s^L)\) (Vasylenko et al., 2025). The payoff is dramatic length extrapolation — up to \(1000\times\) on synthetic recall — from models trained on short contexts. One honest caveat: that result also needs position encodings that cooperate (NoPE (Kazemnejad et al., 2023) mixed with ALiBi (Press et al., 2022)) and a learnable temperature inside entmax — the positional side of length generalization is part of the cure, not a rival to it.

Bounded support beats \(\log n\)

Attention entropy and peak weight as context grows: three relevant tokens amid ever more distractors, softmax vs. α‑entmax on the same scores.

softmax — entropy ~ \(\log n\), peak → 0 α‑entmax (1.5) — entropy ~ \(\log s\), peak stays up

Fig. 8. As \(n\) grows, softmax’s entropy climbs like \(\log n\) and its peak weight decays toward zero — dispersion. α‑entmax is flat: the three relevant scores clear the distractor ceiling by more than the entmax margin, so the threshold \(\tau\) sits above every distractor and the support is pinned at those three tokens — adding more irrelevant tokens changes nothing, they get exact zero. The condition matters: if the relevant scores did not clear the margin, the entmax support would grow too (sublinearly, with the peak still bounded away from zero) — sparsity concentrates attention exactly when something is worth concentrating on. This is the theoretical case for sparsity, independent of any speed argument.

9. The punchline: sparse attention is kernel regression

Here is the reframing that ties the whole essay together (Santos et al., 2026). A single attention output is a Nadaraya–Watson kernel‑regression estimate — the classic nonparametric regressor from 1964:

$$ o \;=\; \sum_{i=1}^n w_i\, v_i, \qquad w_i \;=\; \frac{K\!\big((q-k_i)/h\big)}{\sum_{j} K\!\big((q-k_j)/h\big)}. $$

The choice of kernel \(K\) is the choice of normalizer. With \(\ell_2\)‑normalized queries and keys, \(\lVert q-k_i\rVert^2 = 2 - 2\,q^\top k_i\), so the Gaussian kernel \(K(u)\propto e^{-\lVert u\rVert^2/2}\) is exactly softmax over dot‑product scores — and its infinite support means every value contributes: that is dispersion, restated in the language of statistics. And α‑entmax? Setting \(\alpha = 1 + \tfrac1r\) makes it exactly Nadaraya–Watson with a compact, bounded‑support kernel:

$$ K_r(u) \;\propto\; \big[\,1 - \lVert u\rVert^2\,\big]_+^{\,r}, \qquad \alpha = 1 + \tfrac1r . $$
  • \(r=1\) → the Epanechnikov kernel → \(\alpha=2\) → sparsemax;
  • \(r=2\) → the biweight kernel → \(\alpha=1.5\) → entmax‑1.5;
  • \(r=3\) → the triweight kernel → \(\alpha=\tfrac43\).

Compact kernels are exactly the ones statisticians reach for when they want a local estimate: they ignore data outside a bandwidth. One precision matters. With a fixed bandwidth \(h\), the Epanechnikov estimator above is normalized‑ReLU attention; sparsemax and its entmax siblings correspond to an adaptive bandwidth, chosen per query so the truncated kernel weights sum to one on their own — that adaptive normalization is the threshold \(\tau\) of §3, wearing statistician’s clothes. So the exact zeros of α‑entmax are not a hack: they are the finite support of a textbook kernel, with the entmax exponent \(1/(\alpha-1)\) as the kernel’s polynomial degree. The softmax/Gaussian pair emerges in the \(r\to\infty\) limit, and even top‑\(k\) attention finds a place in the same frame — it is Nadaraya–Watson with a truncated‑Gaussian kernel, i.e. \(k\)‑nearest‑neighbour regression: a crude compact kernel rather than a lawless heuristic. This regression reading is not an isolated trick, either — it is the same lens under which attention is a modern Hopfield update and a fast‑weight memory (Ramsauer et al., 2021): attention as test‑time regression over the keys it has seen.

Dense vs. compact kernels

The kernel shape (left) decides how far attention reaches; the regression fit (right) shows the effect.

Fig. 9. The Gaussian never quite reaches zero, so distant keys always leak into the average (dispersion). Compact kernels vanish outside a bandwidth: the fit becomes local, driven only by nearby keys, and far tokens receive exact zero weight — bounded support, in one picture. (Shown with a fixed bandwidth for clarity; the exact sparsemax/entmax correspondence uses the per‑query adaptive bandwidth of the text, which shares the same compact support.) This is the same object as sparsemax, entmax, the dispersion cure, and — in Part II — the blocks a GPU gets to skip.

10. Bridge to Part II

Part I made a single argument from five directions. A regularizer decides dense vs. sparse; a margin is the same as a zero; one knob \(\alpha\) spans the family; exact zeros cure the dispersion that provably cripples dense softmax at length; and all of it is compact‑kernel regression wearing different clothes. The math says the right object is bounded support.

The objection was always practical: “exact, data‑dependent zeros are pretty, but GPUs want dense blocks, and computing that entmax threshold needs iterative root‑finding — it will never match FlashAttention.” Part II is the story of dismantling that objection: IO‑aware exact kernels, entmax made hardware‑efficient (AdaSplash → AdaSplash‑2), sparsity trained in natively (NSA, MoBA), and the sprawling modern KV‑cache and long‑context literature — which, read through Part I, is largely a rediscovery of support recovery.

References

In order of appearance. Links go to arXiv or the publisher.

  1. Vaswani et al. Attention Is All You Need. NeurIPS 2017.
  2. Martins & Astudillo. From Softmax to Sparsemax. ICML 2016.
  3. Condat. Fast Projection onto the Simplex and the \(\ell_1\) Ball. Math. Programming 2016.
  4. Niculae & Blondel. A Regularized Framework for Sparse and Structured Neural Attention. NeurIPS 2017.
  5. Blondel, Martins & Niculae. Learning with Fenchel–Young Losses. JMLR 2020. (Margins: the AISTATS 2019 companion.)
  6. Peters, Niculae & Martins. Sparse Sequence‑to‑Sequence Models (α‑entmax). ACL 2019.
  7. Malaviya, Ferreira & Martins. Sparse and Constrained Attention for Neural Machine Translation. ACL 2018.
  8. Correia, Niculae & Martins. Adaptively Sparse Transformers. EMNLP 2019.
  9. Xu et al. Show, Attend and Tell. ICML 2015.
  10. Bastings, Aziz & Titov. Interpretable Neural Predictions with Differentiable Binary Variables (HardKuma). ACL 2019.
  11. Jang, Gu & Poole. Categorical Reparameterization with Gumbel‑Softmax. ICLR 2017.
  12. Louizos, Welling & Kingma. Learning Sparse Neural Networks through \(L_0\) Regularization. ICLR 2018.
  13. Child et al. Generating Long Sequences with Sparse Transformers. 2019.
  14. Beltagy, Peters & Cohan. Longformer. 2020.
  15. Zaheer et al. Big Bird. NeurIPS 2020.
  16. Kitaev, Kaiser & Levskaya. Reformer: The Efficient Transformer. ICLR 2020.
  17. Roy et al. Efficient Content‑Based Sparse Attention with Routing Transformers. TACL 2021.
  18. Treviso et al. Predicting Attention Sparsity in Transformers (Sparsefinder). SPNLP @ ACL 2022.
  19. Veličković, Perivolaropoulos, Barbero & Pascanu. Softmax Is Not Enough (for Sharp Size Generalisation). ICML 2025.
  20. Boursier & Boyer. Softmax as Linear Attention in the Large‑Prompt Regime. ICML 2026.
  21. Barbero et al. Transformers Need Glasses! Information Over‑squashing in Language Tasks. NeurIPS 2024.
  22. Zhai et al. Stabilizing Transformer Training by Preventing Attention Entropy Collapse. ICML 2023.
  23. Nakanishi. Scalable‑Softmax Is Superior for Attention. 2025.
  24. Anson, Wang & Aitchison. Scale‑Invariant Attention. NeurIPS 2025.
  25. Li et al. Information Entropy Invariance: Enhancing Length Extrapolation in Attention Mechanisms. 2025.
  26. Barbero et al. Why Do LLMs Attend to the First Token?. COLM 2025.
  27. Miller. Attention Is Off By One. Blog, 2023.
  28. OpenAI. gpt‑oss‑120b & gpt‑oss‑20b Model Card. 2025.
  29. Ramapuram et al. Theory, Analysis, and Best Practices for Sigmoid Self‑Attention. ICLR 2025.
  30. Zuhri, Fuadi & Aji. Softpick: No Attention Sink, No Massive Activations with Rectified Softmax. 2025.
  31. Yang, Tan, Courville, Panda & Shen. Scaling Stick‑Breaking Attention. ICLR 2025.
  32. Vasylenko, Pitorro, Martins & Treviso. Long‑Context Generalization with Sparse Attention. ICLR 2026.
  33. Kazemnejad et al. The Impact of Positional Encoding on Length Generalization in Transformers (NoPE). NeurIPS 2023.
  34. Press, Smith & Lewis. Train Short, Test Long: Attention with Linear Biases (ALiBi). ICLR 2022.
  35. Santos, Gonçalves, McNamee, Treviso & Martins. Sparse Attention as Compact Kernel Regression. ICLR 2026.
  36. Ramsauer et al. Hopfield Networks Is All You Need. ICLR 2021.