The Architecture Terms Behind China's Latest Open-Source LLMs, Explained Plainly
These architecture choices directly determine whether a 1M-context model fits on consumer hardware, runs at interactive speed, and retains early-context accuracy. Understanding the terms lets an engineer read a model card and immediately judge VRAM requirements, inference throughput, and the likely quality of long-context retrieval.
The recent wave of Chinese open-source models—GLM 5.3 Flash, Qwen 3.8 Flash, Hy4 Preview, Kimi K3—ships with a dense vocabulary: MoE, Top-8, GQA, MLA, DSA, IndexCache, iHC, mHC, GR, AttnRes, KDA, GDN, QSA, CSA, HCA, and a zoo of quantization labels. Each term addresses a specific cost bottleneck that appears when context windows hit 1M tokens and parameter counts reach hundreds of billions.
Attention variants (GQA, MLA, DSA, CSA, HCA) all attack the same problem from different angles: how to retrieve relevant history without storing or scanning every token. Linear-attention hybrids (KDA, GDN) compress history into a fixed-size recurrent state, then periodically fall back to sparse or standard attention for precision. Residual-stream upgrades (iHC, mHC, GR, AttnRes) prevent early-layer information from being diluted across 80+ layers by maintaining multiple parallel state highways or letting deeper layers dynamically pull representations from earlier stages.
On the quantization side, the article disentangles BF16/FP8/INT4 (how a single number is stored), MXFP8/NVFP4/W4A16 (how groups of low-precision numbers share a scale), and GPTQ/AWQ/GGUF recipe names (how the model is compressed without destroying capability). A 770B-parameter Hy4 in BF16 would occupy roughly 1.54 TB; aggressive mixed quantization brings a working GGUF down to ~200 GiB with negligible quality loss.
The simultaneous appearance of iHC, GR, and AttnRes across Hy4, Qwen, and Kimi K3 suggests multi-stream residuals are becoming a standard answer to depth-related information decay, not a single-lab experiment.
IndexCache and IndexPool reveal that even the ‘cheap’ Indexer in sparse attention is now considered too expensive, pushing compression into the search step itself.
The convergence on Linear + Sparse hybrid architectures (3+1 layer cycling) across three independent teams implies pure attention over full contexts is no longer viable at 1M-token scale.
GGUF quantization recipe names (Q4_K_M, IQ3_XXS, UD-Q4_K_XL) encode community-evolved mixed-precision strategies, not uniform bit-widths—treating them as simple 4-bit labels underestimates actual file size and quality.