Qwen3.8-Flash-Next: 125B MoE Runs at 6B Active Params, Previews Qwen4

August 26, 2026news

Alibaba's Qwen team has released Qwen3.8-Flash-Next, an open-weight multimodal Mixture-of-Experts model totalling 180B parameters on disk — 125B backbone, 51B N-gram embedding table, and a 4B multi-token prediction module — while activating only 6B parameters per token. The team frames it as an architectural preview of Qwen4, occupying the same role Qwen3-Next played for Qwen3.5. For engineers evaluating open-weight frontier models, the release delivers hard checkpoint sizes, validated serving recipes, and benchmark numbers across coding, agentic, and multimodal tasks — alongside meaningful gaps where closed models still lead.

Architecture: Four Changes That Produce a 6B Compute Profile

Hybrid attention across 48 layers. The layer layout is 12 × (3 × Gated DeltaNet → 1 × Qwen Sparse Attention), giving 36 GDN layers and 12 QSA layers. GDN is a linear-attention mechanism that compresses sequence history into a fixed-size recurrent state — memory does not grow with context length. QSA handles precise retrieval using a lightweight indexer that aggregates the sequence into micro-blocks and holds a fixed budget of 512 blocks (2,048 tokens), regardless of total context. At 262,144 native tokens, that budget represents roughly 0.8% of context attended at full precision.

Gated Residual. The residual stream fans out into 4 parallel branches controlled by an element-wise read gate and a per-branch scalar write gate at bottleneck rank 320. The stated goal is finer cross-layer expressiveness without training instability.

N-gram Embedding. A 20,000,000-entry bigram and trigram table is indexed at layer 2. Lookups are deterministic — capacity scales with table size, not per-token compute. The table is offloadable to host memory with asynchronous prefetch, though that path currently runs only on NVIDIA hardware per the vLLM recipe.

MoE and optimizer. The MoE layer carries 512 experts; each forward pass activates 10 routed experts plus 1 shared, at expert intermediate dimension 640. Hidden dimension is 2,560. Training used Muon alongside AdamW on specific weight categories, with batch-size warmup eliminated and scaling laws refitted. Qwen reports training cost at roughly one-ninth that of Qwen3.7-Plus — a figure that matters as much as the architecture for systems engineering teams weighing efficiency against raw scaling.

Benchmark Profile: Strong Coding, Multimodal Gaps Remain

BenchmarkQwen3.8-Flash-NextClosest Competitor (reported)
SWE-bench Pro62.5
DeepSWE 1.158.7
SWE-bench Multilingual81.0
LiveCodeBench v691.9
CoWorkBench (agentic)73.9
Toolathlon Verified73.5
JobBench55.7
AndroidWorld (multimodal)84.5
MathVision + code interpreter95.7
RealWorldQA88.5
LVBench76.6
HLE35.9Claude Opus 4.6 (Max): 40.0
NL2Repo-Bench48.1DeepSeek-V4-Flash-0731: 54.2

Coding and agentic tasks are the model's strongest territory. Frontier reasoning benchmarks expose the gap: Claude Opus 4.6 (Max) leads HLE 40.0 to 35.9, and DeepSeek-V4-Flash-0731 takes NL2Repo-Bench 54.2 to 48.1. Multimodal results — particularly MathVision at 95.7 with code interpreter — are notable given the 6B active compute budget.

Serving Requirements and Efficiency Claims

Sparse activation reduces compute per token; it does not reduce the memory footprint of the weights. The FP8 checkpoint is 172.78 GiB and the BF16 checkpoint is 335.28 GiB. Per validated vLLM recipes, TP2 is the minimum FP8 configuration on GB300 hardware, TP4 is recommended, and plain TP8 is explicitly incompatible with the checkpoint's 128-wide quantization blocks. On an 8×H200 node, TEP8 is the indicated configuration. This is not a workstation deployment.

Qwen's announcement cites QSA kernel speedups of up to 7.6× prefill and 4.9× decode at 1M-token context; the SGLang cookbook and vLLM recipes report 10.2× and 6.6× respectively — treat the spread as vendor-reported until independently verified. Qwen also reports 8.6× the prefill throughput of Qwen3.7-Plus at 90% prefix-cache hit rate. Native context is 262,144 tokens, extensible to 1,000,000 via YaRN.

The model is available through vLLM, SGLang, TokenSpeed, transformers serve, and llama.cpp for GGUF quants, with fine-tuning support via Unsloth, Swift, and LLaMA-Factory. Thinking mode defaults on with reasoning_effort set to xhigh, medium, or low; Qwen recommends temperature 1.0 and top_p 0.95 for thinking mode, and temperature 0.7 with top_p 0.80 for instruct mode. One licensing detail practitioners should not overlook: the model ships under qwen-community-1.0, not Apache-2.0.

The GDN/QSA hybrid and N-gram embedding table are structural bets consistent with the broader pattern where pipeline architecture choices are driving more measurable AI performance gains than raw model scale. Whether the Qwen4 architecture this model previews can close the frontier reasoning gap at a one-ninth training cost multiplier is the question the field will answer when Qwen4 ships.