GLM-5.3-Flash vs Qwen3.8-Flash-Next: Two Chinese AI Labs Independently Converge on the Same Model Architecture
Two frontier open-weight models shipped within a day of each other this week.Z.ai released GLM-5.3-Flash, a 320B-parameter multimodal MoE model with 18B active parameters.Alibaba’s Qwen team released Qwen3.8-Flash-Next, a 125B model with 6B active parameters that previews the Qwen4 architecture.
The two teams designed these systems independently.Yet their configs read like near-copies of each other.Both use a 3:1 hybrid of linear and full attention.Both select context with a compressed indexer capped at 2048 tokens.Both widen the residual stream into 4 gated branches.
Both train with the Muon optimizer, with fused parameter matrices split before orthogonalization.This article walks through the shared recipe, the one point of disagreement, and the one lab that dissents.The Two Releases in Brief GLM-5.
3-Flash is the first natively multimodal model in the GLM-5 series, released under the MIT license on Hugging Face.Z.ai tested it anonymously as Ox Alpha on OpenRouter, where it became the most popular model of the week.
It was trained on a 30T-token multimodal corpus and serves a 1M-token context window.Z.ai says it outperforms GLM-5.2 across benchmarks at one-tenth the price, while approaching Claude Opus 4.8 on coding and agentic benchmarks.List pricing is $0.15 per million input tokens and $0.
50 per million output tokens.Qwen3.8-Flash-Next plays the role Qwen3-Next played for Qwen3.5: an early public preview of the next architecture family.The model card lists a 125B main model plus an additional 51B n-gram embedding table, with 6B parameters activated per token.
Native context is 262,144 tokens, extensible to 1M with YaRN.The Qwen team reports that training required only about one-ninth the compute of Qwen3.7-Plus.The accompanying technical report is titled “On the Design of Qwen3.8-Next Architecture: Evaluation, Efficiency, and Training Stability.” window.
addEventListener("message",function(e){ if(e.data && e.data.mtpxH){ var f=document.getElementById("mtpx-conv-frame"); if(f){f.style.height=e.data.mtpxH+"px";} } }); Convergence Point 1: Three of Every Four Attention Layers Are Linear GLM-5.
3-Flash stacks 45 layers: 34 linear-attention layers and 11 full-attention layers, per the shipped config.Qwen3.8-Flash-Next stacks 48 layers in a repeating block of 3 Gated DeltaNet layers plus 1 Qwen Sparse Attention layer, per the vLLM recipe.Both land on the same 3:1 ratio.
The linear layers are the cheap layers.Instead of a KV cache that grows with the text, they compress all history into a fixed-size recurrent state.Compute per token stays constant regardless of context length.
GLM uses Kimi Delta Attention (KDA), the linear-attention design introduced by Moonshot AI’s Kimi Linear, which applies a fine-grained per-channel decay gate.Qwen uses its own Gated DeltaNet (GDN), which gates at the per-head level.Different gating granularity, same delta-rule family, same job.
The remaining quarter of layers do precise long-range retrieval.GLM uses NoPE multi-head latent attention (MLA) in the DeepSeek style.Qwen uses grouped-query attention inside QSA.This is where the KV cache actually lives, and where the second shared trick comes in.
Convergence Point 2: Compress 4x, Score, Keep 2048 Tokens Neither model lets its full-attention layers attend over the entire context.Both attach a small learned indexer that scores chunks of history and keeps only the winners.The parameters match almost exactly.
GLM’s sparse layers use a 32-head lightning indexer with top-2048 selection, descended from DeepSeek’s DSA.To cut indexer cost at 1M-token contexts, Z.ai introduces IndexPool, which compresses four indexer key vectors into one through weighted pooling before scoring.
Qwen’s QSA operates at micro-block granularity: the compressed lightweight indexer scores 4-token blocks and keeps the top 512 blocks, which is exactly 2048 tokens.So both models compress the context 4x before scoring, and both cap the attention budget at 2048 tokens.Qwen credits QSA with up to 7.
6x prefill and 4.9x decoding speedups over full attention at 1M tokens.The combined effect on GLM’s side is large.Compared with the full GLM-5.3 model, Z.ai reports the Flash architecture cuts attention compute by roughly 3x and KV cache size by 4.
4x, while nearly halving active parameters (18B vs 32B) and layer count (45 vs 92).Convergence Point 3: Four Residual Streams Instead of One Both models abandon the single residual stream that has defined transformers since 2017.
Both widen it into four parallel branches, with gates controlling what each block reads back and writes out.GLM adopts Manifold-Constrained Hyper-Connections (mHC), a DeepSeek-originated design, configured with 4 branches in the shipped weights.
Qwen wrote its own variant, Gated Residual, which modulates flow through 4 widened streams via an element-wise data-dependent read gate and a per-branch scalar write gate.
Per the Qwen team, Gated Residual removes the extra branch-mixing step used by Hyper-Connections, reducing memory-access overhead, and the gate suppresses activation outliers well enough to allow FP8 residual storage.
Notably, the Qwen team ablated both approaches and found them roughly equal in quality.Two labs, two implementations, one identical conclusion: four gated streams beat one.Convergence Point 4: Muon, With Fused Matrices Split Per Component Both models train with the Muon optimizer.
And both apply the same subtle refinement: fused projection matrices are split into their independent transformations before Muon orthogonalizes them.
Qwen documents splitting fused QKV, SwiGLU, and GDN projections, assigning Muon to genuine 2-D linear maps and AdamW to embeddings, routers, and low-rank parameters.Qwen also refit its scaling laws for the new architecture and dropped batch-size warmup entirely, after measuring that warmup cost 18.
8% more optimizer steps without improving results.Where They Disagree: Positional Encoding The one clean split is rotary position embeddings in the full-attention layers.GLM-5.3-Flash drops them: the config sets qkropehead_dim = 0, making its sparse MLA layers fully NoPE.
Position information flows implicitly through the recurrent linear layers.Qwen tried the same thing and kept RoPE.According to the Qwen3.8-Next technical report, NoPE produced no measurable difference during pre-training.
The failure surfaced later: after post-training, the NoPE variant often failed to stop generating.That is a useful cautionary result for the field.Pre-training loss curves can hide behavioral defects that only appear after RLHF-stage tuning.
The Broader Convergence, and the One Dissenter This recipe is not limited to two labs.DeepSeek pioneered the sparse-indexer-plus-2048-budget pattern with DSA in DeepSeek-V3.2-Exp, and mHC is a DeepSeek design now shipping in GLM.
Moonshot’s Kimi contributed KDA, the exact linear-attention layer GLM adopted.Chinese open models are visibly cross-pollinating architecture components and converging on shared settings.The notable dissenter is MiniMax.
During M2 development, the team extensively tested linear and sliding-window attention at scale and found severe deficits in multi-hop reasoning, especially beyond 32K context after SFT.M2 shipped with full softmax attention in every layer.
For M3, MiniMax adopted MiniMax Sparse Attention (MSA), which sparsifies softmax attention via block selection but includes no linear-attention layers at all.So the field has not fully settled.Z.ai, Qwen, DeepSeek, and Kimi are betting that a 3:1 linear hybrid preserves reasoning.
MiniMax’s ablations say it does not, at least for their stack.Key Takeaways GLM-5.3-Flash (34:11) and Qwen3.8-Flash-Next (36:12) independently landed on the same 3:1 linear-to-full attention ratio.
Both compress context 4x and cap sparse attention at a 2048-token budget, a pattern DeepSeek’s DSA started.Both replace the single residual stream with 4 gated branches; Qwen ablated i
Related
相關文章

靈掌機器人完成數千萬元天使輪融資
首頁 IT圈 最會買 設置 日夜間 隨系統 淺色 深色 主題色 黑色 投稿 訂閱 RSS訂閱 收藏 軟媒應用 App客戶端 要知App 軟媒魔方 業界 手機 電腦 測評 視頻 AI 蘋果 iPhone 鴻蒙 軟件 智車 數碼 學院 遊戲 直播 5G 微軟 Win10 Win11 專題 搜索 首頁 > 智能時代>具身智能 靈掌機器人完成數千萬元天使輪融資 2026/8/28 21:09:19 作者:潞源 責編:潞源 評論: 8 月 28 日消息,據《科創板日報》今天報道,工業具身機器人技術企業靈掌機器人近日完成數千萬元天使輪融資,投資方包括凱龍高科、遨博智能、錫創投、芯能創投。

騰訊 WorkBuddy,學不會豆包工作?
藍洞商業2026.08.28 16:25 · 來自雲南全文4561字00:00 / 10:45騰訊 WorkBuddy 會整合企業微信嗎?文 | 藍洞商業,作者 | 趙衛衛字節跳動的豆包工作上線當天,騰訊雲與智慧產業事業群 CEO 湯道生髮布了一篇內部信長文。Chatbot 的戰役已經是過去時了, AI 辦公智能體才是當下的熱點。湯道生提到了過去一年元寶與豆包的競爭,承認對手值得學習,而元寶在巨大的用戶增長壓力下,花了較多精力去做推廣與引流,當時模型與產品都還沒 ready,其實效果並不滿意。

售價2681元,抱抱臉開源機器人來了
機器人前瞻(公眾號:robot_pro) 作者 | 周加琦 編輯 | 漠影 機器人前瞻8月28日報道,昨天,Hugging Face發佈了一款鴨形開源機器人Microduck,售價399美元(約2681.28元),目前預購已開啟。 Hugging Face聯合創始人兼CEO Clem Delangue在X上稱,歡迎來到開源且平價的機器人時代,物理智能與世界模型技術將實現全民普惠! ▲(圖源:X) 這是Hugging Face推出的第二款機器人。

穩居開源模型第一梯隊,騰訊發佈混元 Hy4 preview 模型
作者:沁滄(實習) 責編:沁滄 評論: 8 月 28 日消息,騰訊官方今日發佈了 Hy4 preview,總參數 770 B,激活參數 49 B,上下文長度 1M。官方表示,Hy4 preview 在模型尺寸、上下文長度、數據規模上都進行了顯著的擴展,預訓練和後訓練的共同進步帶來了智能水平的又一次巨大提升,穩居開源模型第一梯隊。

Anthropic 推出 MHS 標準,首度重拳殺入物理 AI 領域
作者:故淵 責編:故淵 評論: 8 月 28 日消息,Anthropic 昨日(8 月 27 日)發佈博文,宣佈以研究預覽形式,發佈模型硬件標準(Model Hardware Standard,MHS),路透社、CNBC 等媒體解讀認為這標誌著該公司首次公開進軍具身智能與物理 AI(Physical AI)領域。
Anthropic 再定統一標準:MHS,打通 AI 與物理世界的統一接口
MHS把一場新藥研發實驗速度提升3倍。 作者丨高允毅 編輯丨岑 峰 這是Anthropic第二次發佈全行業統一協議。第一次,它發佈了MCP,它統一了 AI 代理調用外部工具、數據源與 API 的方式,如今滿世界的 Agent 都靠它連數據庫、接瀏覽器、調 API。這一次,它把完全相同的邏輯延伸到了物理世界,Agent可以和不同的物理設備之間對話了。