Document Information
A Research-Grade Analysis of the Causal Encoder-Decoder Architecture Family
Abstract
DeepSeek V4.1 Flash represents a fundamental architectural departure from the V4 generation, introducing a Causal Encoder-Decoder (CED) design that reduces KV cache requirements by approximately 4Γ relative to V4 Flash and 437Γ relative to DeepSeek V1. Released September 10, 2026, the model achieves 552B backbone parameters with only 8B active during prefill and 16B during decode, enabling substantial cost efficiency improvements for agentic workloads.
This analysis presents a comprehensive technical examination of the V4.1 Flash architecture, including: the CED encoder-decoder structure with projected global KV cache; Compressed Sparse Attention 2 (CSA2) with three static attention modes (Full, Reindex, Reuse); FP4 KV cache compression using E2M1 format; SWA Bounded Replay for sliding window attention reconstruction; Single-Pass mHC residual connections; Engram conditional memory (196B parameters); DSpark speculative decoding; native multimodal vision via DeepSeek-ViT; and the complete pre-training and post-training pipeline.
The model outperforms V4 Pro (1.6T/49B active) across all measured benchmarks despite having 1/3 the total parameters and 1/6 the active parameters, marking the first instance where a "Flash" tier model in the DeepSeek lineup entirely replaces a "Pro" tier model. This efficiency gain β driven by architectural innovation rather than parameter scaling β represents a significant inflection point in open-weight model development.
All architectural specifications, benchmark results, and technical claims in this document are sourced from official DeepSeek documentation and verified against the HuggingFace model card published September 10, 2026. This analysis is intended to serve as a trustworthy technical reference for researchers, engineers, and practitioners working with the V4.1 generation.
Executive Summary (TL;DR β 90 Seconds)
What is DeepSeek V4.1 Flash?
DeepSeek V4.1 Flash is the first model in a new architecture family from DeepSeek, released September 10, 2026. It is not a re-post-training of V4 Flash (like the July 31, 2026 V4-Flash-0731 refresh was). This is a ground-up new architecture designed for "a higher capability ceiling, faster inference, higher throughput, and scaling to larger models" (official changelog).
Architecture Headline
552B backbone parameters + 196B Engram parameters = 748B total, with 8B active per token during prefill and 16B during decode. Causal Encoder-Decoder (20+20 layers). MoE with 384 routed + 1 shared expert, activating 6 routed per token. Native multimodal (text + image). 1M context window. 890 bytes per token KV cache (1/4 of V4 Flash).
Key Innovations
- Causal Encoder-Decoder (CED): 20-layer causal encoder + 20-layer decoder with projected global KV cache (inspired by YOCO)
- CSA2 (Compressed Sparse Attention 2): Three static modes β Full, Reindex, Reuse β with Hierarchical Sparse Indexer and FP4 KV caching (E2M1 format)
- SWA Bounded Replay: Reconstructs sliding window attention KV states by replaying only the most recent n_win tokens, reducing persistent KV cache to ~1/8 of V4 Flash
- Single-Pass mHC: Revised residual-stream mixing with efficient Mega-mHC kernel
- Engram Conditional Memory: 196B parameters, sparsely accessed via token-based lookup
- DSpark Speculative Decoding: Semi-autoregressive draft generation with confidence-scheduled verification
- Native Multimodal Vision: DeepSeek-ViT with 2D-RoPE, trained from scratch with 3Γ3 pixel-unshuffle downsampling
Benchmark Highlights
- GPQA Diamond: 90.9 (vs V4 Flash 89.9, V4 Pro 92.4)
- HLE w/tools: 63.9 (vs V4 Flash 51.5, V4 Pro 60.0) β +18.8 point gain over V4 Flash
- DeepSWE v1.1: 74.2 (vs V4 Flash 54.4, V4 Pro 62.7) β +14.9 point gain, matches Opus 5
- Terminal-Bench 2.1: 90.6 (vs V4 Flash 82.7, beats Opus 5 at 89.1)
- Codeforces Rating: 3,471 (vs V4 Pro 3,348)
- Wins against V4 Pro on every comparable benchmark despite having 1/3 the parameters and 1/6 the active parameters
Pricing
- Off-peak: $0.15/M input (cache miss), $0.003/M (cache hit), $0.60/M output
- Peak: $0.30/M input (cache miss), $0.006/M (cache hit), $1.20/M output
- Peak hours: 01:00β04:00 and 06:00β10:00 UTC, MondayβFriday
- 3.3Γ cheaper than V4 Pro ($1.98/M output off-peak) with superior quality
- 42Γ cheaper than Claude Opus 4.8 ($25/M output) at comparable GPQA scores
V4 Pro Retirement
Starting September 14, 2026 at 04:00 UTC (12:00 Beijing Time), all deepseek-v4-pro API requests are routed to V4.1 Flash and billed at Flash pricing. DeepSeek states: "extensive testing shows that V4.1 Flash now outperforms DeepSeek V4 Pro across performance, cost, speed, and total time" β the first time a flash-tier model has entirely replaced a pro-tier model in the DeepSeek lineup.
Bottom Line
V4.1 Flash demonstrates that architectural efficiency can outweigh parameter scale: a 552B/8B-active model outperforms a 1.6T/49B-active model across all metrics. The KV cache compression techniques (CED projected global KV + CSA2 cross-layer reuse + FP4 compression + SWA Bounded Replay) reduce memory requirements to 1/4 of V4 Flash, enabling dramatically lower serving costs for long-context agentic workloads. This represents a significant inflection point where "smarter" beats "bigger" in open-weight model development.
Table of Contents
- Introduction & Model Overview
- Architecture Deep Dive
- 2.1 Causal Encoder-Decoder (CED)
- 2.2 Compressed Sparse Attention 2 (CSA2)
- 2.3 FP4 KV Cache Compression
- 2.4 SWA Bounded Replay
- 2.5 Single-Pass mHC Residual Connections
- 2.6 Mixture of Experts (MoE) Configuration
- 2.7 Engram Conditional Memory
- 2.8 DSpark Speculative Decoding
- 2.9 Multimodal Vision Architecture
- Parameter Count & Activation Patterns
- Training Methodology
- Benchmark Results & Analysis
- Cost-Quality Analysis
- Inference & Deployment
- Comparison with V4 Flash and V4 Pro
- Independent Verification Status
- Strategic Implications
- Limitations & Considerations
- Conclusion
- References & Citations