Qwen3.8-2.4T-A95B shipped this week under a model card that describes its 92 layers with unusual precision: three Gated DeltaNet blocks followed by one standard gated attention block, repeated 23 times. Sixty-nine of its layers are linear attention — not full softmax, not standard transformer. Qwen3.5 already ran this 3:1 layout; Qwen3.8 scales it to 2.4 trillion total parameters and 95 billion active, the largest open-weight commitment to hybrid linear attention anyone has shipped, with a vendor-reported GPQA Diamond score of 92.6 and SWE-bench Pro at 67.7. The story most coverage is running is “biggest open model.” The actual story is that Alibaba has decided full attention’s costs cannot carry frontier inference at long context, and it built the most capable open-weight model in history on that premise. The architectural decision is well-grounded in the research literature. The risk is real, it is specific, and nobody — including Alibaba, as far as the public record shows — has published the test that would settle it.
Why Full Attention Doesn’t Scale to Long Context
Full softmax attention gets expensive at long context in two distinct ways, and it pays to keep them separate. During prefill, attention-score computation grows quadratically with sequence length. During decoding, the problem is memory: every new token attends over every previous token’s key-value pair, so the KV cache grows linearly with the sequence, and the GPU spends its time moving that cache across the memory bus rather than doing arithmetic. Run the numbers on Qwen3.8’s own disclosed configuration. Each gated attention layer stores 4 KV heads at head dimension 256 — about 94 KB per token across its 23 full attention layers at bf16. A single session at the 262,144-token native context carries roughly 25 GB of cache; at the extended 1,010,000-token limit, about 95 GB. Had Alibaba built all 92 layers as full attention, those figures would be roughly 99 GB and 381 GB — per request, before batching. This is why inference costs for long-context models diverge sharply from the arithmetic that holds at short context: the KV cache is the hidden tax, and it grows with every token in the session.
Gated DeltaNet addresses this by replacing the expanding cache with a fixed-size recurrent state. Where a full attention layer’s cache grows linearly with sequence length, a DeltaNet layer’s memory is constant — in Qwen3.8, 128 value heads at head dimension 128, bounded to that shape whether the context is ten tokens or a million. The mechanism, as Maxime Labonne’s analysis of Qwen3.5 details, combines Mamba2’s gated decay mechanism with a delta rule for updating the hidden state. One precision the coverage keeps blurring: this hybrid is gated twice over, and the two gates do different jobs. DeltaNet’s decay gate manages the recurrent memory — what to keep, what to fade. The output gating on the full attention layers is a separate mechanism, and it is the one Labonne credits with eliminating attention sinks and massive activations, the failure patterns that have destabilized large-scale training runs. The efficiency lives in the DeltaNet layers; the training-stability win lives in the gated attention.
NVIDIA’s research group formalized the recurrent side’s limitations in GatedDeltaNet-2, published in May 2026. The original Gated DeltaNet uses a single scalar gate to control both memory erasure and writing — operations that act on different axes of the recurrent state. GatedDeltaNet-2 decouples them with separate channel-wise gates, and at the 1.3B-parameter scale the paper tests, the decoupled design is stronger on multi-key retrieval — exactly the long-context workloads that motivated the architecture in the first place. Qwen3.8’s card does not say which variant it uses; the disclosed head configuration matches the original recipe, and nothing in the card indicates NVIDIA’s improvement made it into training.
The scale of commitment matters here. At 2.4 trillion total parameters, the GPU hours required to pretrain this model are not recoverable. Choosing linear attention — an architecture that was still considered an academic experiment two years ago — as the dominant layer type for that training run is not a conservative decision. Alibaba made this bet with real compute and published the weights.

The 3:1 Ratio Sits Near an Empirical Recall Threshold
A July 2026 systematic analysis of hybrid linear attention, available at arXiv:2507.06457, is the best public evidence on what layer ratios actually do. Its findings, from models trained at 340M and 1.3B parameters: ordinary language modeling barely notices the ratio. Average benchmark scores sit in a flat 0.55–0.57 band from 24:1 linear-to-full all the way down to 3:1. Recall is the metric that moves. Pure linear models collapse to RULER retrieval scores between 0.10 and 0.35; adding full attention layers pulls recall back toward the transformer baseline of roughly 0.42, with the 3:1 average reaching about 0.397 and the best backbone — Gated DeltaNet — hitting 0.436 at 3:1, above the baseline itself. The team’s recommendation: a gated, hierarchical backbone with one softmax attention layer for every three to six linear layers. In their 1.3B setting, the 3:1 configuration cut KV-cache memory by a factor of four while landing near-transformer recall. Qwen3.8 ships at exactly 3:1, and the cache arithmetic above is that factor of four made literal: 25 GB where a same-shape pure transformer would carry 99.
Read the recommendation carefully, though, because the tempting gloss gets it backwards. Within the 3:1-to-6:1 band the study endorses, 3:1 is the conservative end — the most full attention the researchers recommend carrying, not the least. A lab chasing maximum cache reduction ships 6:1 or leaner and accepts the recall risk; Alibaba kept 23 full attention layers, the recall-heavy end of the validated range. What the study does not do is certify this exact model. Its authors are explicit about the limits: models up to 1.3B parameters, evaluation inside a 4,096-token context window, and an open question — their words — whether the trade-offs persist at 10B-plus scale. Qwen3.8 carries three orders of magnitude more total parameters, routes every token through a 512-expert MoE with 11 active, and serves contexts more than sixty times longer than anything the study measured. The research makes the 3:1 design plausible and principled. It does not establish that 23 full attention layers are sufficient at 2.4 trillion parameters, and no public experiment comes anywhere near that question.
The systematic analysis adds a note of architectural caution that goes mostly unmentioned in the coverage: strong standalone linear attention models do not necessarily stay ahead after hybridization. Gated DeltaNet posts the highest standalone accuracy at the 340M scale, yet hybridized HGRN-2 at 6:1 outperforms it there, and at 1.3B the two become comparable. Standalone scores are unreliable predictors of hybrid behavior — which cuts both ways for a 2.4T mixture-of-experts whose routing adds an interaction no published ratio study covers. Whether each DeltaNet layer’s recurrent state maintains coherent long-range dependencies across shifting expert activation patterns at 95B active parameters is an open question in the literal sense: nobody has published the experiment.
Mandatory Thinking Mode Meets Attention Amnesia
In June 2026, researchers from multiple European institutions published arXiv:2606.11052, which documents what they call attention amnesia: chain-of-thought supervised fine-tuning can catastrophically degrade long-range recall in hybrid linear-attention models. The mechanism they identify is specific. CoT training data is dominated by dense, short-horizon reasoning — each step leaning on the context immediately behind it — and that gradient signal biases the query-key projections toward short-range patterns. A standard transformer has redundancy to absorb the drift; every layer does retrieval. In a hybrid, the few full attention layers carry nearly all of the precise long-range routing, so drift concentrated there is drift with no backup. The stored information survives. The model loses the ability to address it.
The empirical results are not marginal. On NIAH-S2@256K — multi-needle retrieval at 256 thousand tokens — HypeNet-9B dropped from 67.2% to 9.4% after CoT fine-tuning. Not a percentage-point decline; a 57.8-point collapse. The paper reports the damage grows with harder retrieval settings and longer contexts, which is exactly the direction Qwen3.8’s million-token window points. The proposed fix, QK-Restore, is training-free: put the query-key projections back from the pre-fine-tuning checkpoint, keep every other post-SFT weight. On HypeNet-5B it lifted S3@256K retrieval to 76.4%.
Now the Qwen-specific part, and the chain of inference deserves to be laid out honestly, because its links carry different weights. Established: Qwen3.8 is a hybrid linear-attention model, and its card states without qualification that it “requires thinking mode for all interactions” — thinking cannot be disabled. Established: CoT supervised fine-tuning broke long-range recall in the hybrids the amnesia paper tested. Inference: a model that mandates reasoning before every response almost certainly went through heavy reasoning-oriented post-training. But the card does not disclose the recipe — supervised traces, reinforcement learning, rejection sampling, distillation, some mixture of all four — and the amnesia result is specifically about supervised fine-tuning on CoT data. The paper’s subjects are another step removed: HypeNet and Jet-Nemotron are small hybrids built by converting or distilling existing transformers, not pretrained as hybrids from scratch. Qwen3.8 is a natively pretrained hybrid at hundreds of times their scale. Nothing published demonstrates the failure occurs in it. What the research establishes is a documented failure mechanism sitting directly on the path Alibaba chose — a hypothesis with a clear test, not a verdict.
The mitigation question deserves the same restraint. QK-Restore requires a pre-SFT checkpoint of the same model and was validated inside the researchers’ own training setup; no frontier lab is obligated to name-check one paper’s method in a model card. Alibaba may have avoided the degradation through its data mixture, mitigated it some other way, or measured it and found nothing. The defensible observation is narrower and still worth making: the card does not disclose whether anyone tested for this failure mode, and it describes no recall-preservation step in post-training. Silence is not evidence of a defect. It is just silence, on the one question this architecture makes most important.

So what did Alibaba actually publish? More than the skeptical read wants, less than the question needs. The card reports LongBench v2 at 66.3 and — the number that matters most here — MRCR v2 at 256K tokens: 92.9. That is a real long-context retrieval benchmark at real depth, and 92.9 is a strong score. If attention amnesia had gutted this model the way it gutted HypeNet-9B, that number would be hard to explain, and any honest version of the skeptical case has to absorb it. What it does not settle is the hard end of the distribution: the amnesia paper found degradation concentrates in the hardest retrieval settings, and MRCR is one benchmark, vendor-run, with no before-and-after post-training comparison. The independent-evaluation picture argues for patience too — the latent.space roundup of the release notes Vals found Alibaba’s reported Terminal Bench results modify benchmark timeouts relative to the standard configuration. That caveat is specific to Terminal Bench, but it is a reason to wait for independent runs before treating any vendor number as settled. And the headline scores — GPQA Diamond 92.6, SWE-bench Pro 67.7 — are measured at context depths where neither KV-cache economics nor recall drift would register either way.
The weights are on HuggingFace, and NIAH-S2@256K costs nothing but GPU time. If Qwen3.8 holds its recall on the hard multi-needle settings after mandatory thinking-mode training, then Alibaba either avoided a failure the June literature says is real or quietly solved it — and either result is worth publishing as independent research. If recall falls, the architecture was right and the post-training was the problem, which is the more fixable diagnosis. I don’t know which way it lands, and neither does anyone outside Alibaba. That is the point. The numbers that would settle it are the ones nobody has published yet.
Correction (August 14, 2026): An earlier version of this article claimed the release documentation included no long-context retrieval benchmarks. The model card reports MRCR v2 at 256K tokens at 92.9 — evidence against this piece’s central worry, now discussed above. The earlier version also described the 3:1 ratio as a research-validated “minimum safe floor” (the cited study recommends 3:1 to 6:1, with 3:1 as its recall-conservative end), stated as fact that mandatory thinking mode implies chain-of-thought supervised fine-tuning (an inference; the recipe is undisclosed), and misattributed the attention-sink fix to DeltaNet’s gate rather than the gated attention output. The thesis stands; the certainty didn’t.

AI-generated editorial illustration · TemperatureZero · August 13, 2026
Keep reading the signal
Get the Daily Signal — a concise briefing on what actually matters in AI and the systems around it.
Subscribe FreeContinue the archive