DEV Community

Cover image for FlashMemory Cuts DeepSeek-V4's KV Cache to 13.5%: Lookahead Sparse Attention
pueding
pueding

Posted on • Originally published at learnaivisually.com

FlashMemory Cuts DeepSeek-V4's KV Cache to 13.5%: Lookahead Sparse Attention

What: The FlashMemory-DeepSeek-V4 paper introduces Lookahead Sparse Attention (LSA) — decoding very long context without loading the whole KV cache, by training a small Neural Memory Indexer to predict which chunks of the cached past a token will actually use.

Why: At long context the binding cost is memory, not math: the KV cache grows with every token until it dominates GPU serving memory, so LSA cuts the physical cache footprint to 13.5% of the full version while nudging accuracy up 0.6%.

vs prior: Where a plain full KV cache holds every token's Key and Value for the entire context, LSA's indexer keeps only the predicted-relevant chunks — and, unusually, it is trained backbone-free, so the trillion-scale model never has to sit in GPU memory while the indexer learns.

Think of it as

An assistant who sets out only the files you'll open next.

                  THE NEXT WORD TO WRITE
                            │
            ┌───────────────┴───────────────┐
            │                               │
            ▼                               ▼
    ┌───────────────┐              ┌────────────────┐
    │  Dense recall │              │  The assistant │
    │ (full cache)  │              │  (LSA indexer) │
    └───────┬───────┘              └───────┬────────┘
            │                              │
   haul the WHOLE archive         set out only the few
   to the desk, every step        folders you'll open next
            │                              │
            ▼                              ▼
   ✗ ~40 GB on the desk           ✓ ~5.4 GB on the desk
     at 500K tokens                 (13.5% — a seventh)
Enter fullscreen mode Exit fullscreen mode
  • context token = a document filed away as the model reads
  • KV cache = the whole archive of everything read so far
  • Neural Memory Indexer = an assistant who predicts which folders you'll open
  • Lookahead Sparse Attention = bringing only those few folders to the desk
  • 13.5% footprint = a desk that holds about a seventh of the archive

Quick glossary

KV cache — The stored Key and Value vectors for every token already processed, so the model never recomputes the past. It grows with context length — at 500K tokens it is enormous. Background: KV Cache → Memory Cost.

Lookahead Sparse Attention (LSA) — FlashMemory's mechanism: rather than attending over the entire cache, it looks ahead and keeps only the KV entries a token is predicted to need, so most of the cache is never loaded during decode.

Neural Memory Indexer — The lightweight model that does the predicting. It scores chunks of the cached context and flags which ones matter for the current query — the part that decides what LSA keeps.

Backbone-free / decoupled training — Training the indexer on its own, without the giant base model loaded. Because the trillion-scale "backbone" never sits in GPU memory during indexer training, the method is far cheaper to train.

Decode vs prefillPrefill reads the whole prompt in one parallel pass; decode emits one token at a time, each time reading the cache. LSA targets the decode step, where the cache is read over and over.

Physical footprint — The actual GPU memory the cache occupies — not just how much compute it costs. LSA's headline is a footprint cut (to 13.5%), which is a memory win, not only a speed win.

DeepSeek-V4 — The long-context model (released April 2026) that FlashMemory is built into. LSA is the change that makes its ultra-long-context serving affordable.

The news. On June 9, 2026, a Tencent team (Wang et al., arXiv 2606.09079) released FlashMemory-DeepSeek-V4, introducing Lookahead Sparse Attention (LSA). Instead of loading the entire KV cache during long-context decode, a Neural Memory Indexer predicts which context chunks matter and keeps only their KV entries. On DeepSeek-V4 it cuts the physical KV-cache footprint to 13.5% of the full-context baseline — over 90% smaller at 500K context — while improving accuracy +0.6% on average. Read the paper →

Picture the metaphor for a moment. The model has read an enormous document and filed every page into an archive — that archive is the KV cache. To write the next word, the naive approach hauls the entire archive to the desk, every single time. LSA hires an assistant who has learned your habits: before each step they glance at what you're working on, predict which few folders you'll actually open, and set out only those. The desk stays nearly empty, and in the paper's reported evaluations the quality holds. That "predict, then fetch only the few" move is the whole idea.

Why does the archive — not the arithmetic — become the wall? Every token the model reads leaves a Key and a Value in the KV cache, and the cache is multiplied out across layers and heads, so it balloons with context length. At a few thousand tokens nobody notices; at 500K the cache becomes the dominant draw on GPU serving memory and caps how much the device can hold. LSA's Neural Memory Indexer attacks that directly: it scores chunks of the cached past, flags the ones the current token is predicted to need, and keeps only their KV entries — a selective gather of the query-critical chunks rather than a full sweep of the cache.

The genuinely new trick is how the indexer is trained. A straightforward way to learn which chunks matter would be to run the full model end-to-end, which means holding the trillion-scale backbone in GPU memory the whole time. FlashMemory trains the indexer backbone-free and decoupled — the base model never has to be loaded during indexer training — so the part that earns the savings is also cheap to build.

This is a different lever from the block-sparse schemes you may have seen. MiniMax's MSA gathers a few KV blocks per query to cut attention compute, but it still keeps the whole cache resident. LSA aims one layer down: it avoids holding most of the cache at all, so the win is the physical memory footprint. Same family — select instead of sweep — but one saves FLOPs and the other saves gigabytes.

Where the 13.5% comes from

Hold the setup fixed and walk it. Say the full-context KV cache at 500K tokens weighs 40 GB (illustrative) — already a heavy load for a single GPU. LSA's indexer keeps only the predicted-relevant chunks; at the paper's reported ratio it preserves 13.5% of that cache, so the resident footprint drops to about 5.4 GB — a ~34.6 GB saving, the "over 90% smaller at 500K" the authors report. The surprising part is the accuracy line: selection usually costs a little quality, but FlashMemory reports +0.6% on average, because the indexer drops mostly the chunks a token wasn't going to use anyway.

How the long-context attention options compare

Approach What stays in the KV cache What it saves Note
Full KV cache (dense) every token's Key and Value, always nothing — the baseline exact, but the footprint balloons with length
Sliding-window only a fixed recent window memory, by forgetting far context cheap; loses long-range recall
Block-sparse gather (DSA / MoBA / MSA) the whole cache, but reads a few blocks per query mostly attention compute cache stays resident; saves FLOPs, not footprint
LSA (FlashMemory) only indexer-predicted chunks physical footprint → ~13.5% (Wang et al.; setup-dependent) +0.6% accuracy; indexer trained backbone-free

One caveat worth keeping: the headline numbers — 13.5% footprint, over-90% reduction at 500K, +0.6% accuracy — are the authors' own results on DeepSeek-V4 at a single operating point, and selective-cache methods are setup-dependent: chunk size, how aggressively the indexer prunes, the sequence length, and the task all move them. The durable lesson is the lever (predict which chunks matter, hold only those); the exact percentage is a reported headline, not a guarantee at every length.

Goes deeper in: LLM Internals → KV Cache → Memory Cost

Related explainers

FAQ

What is Lookahead Sparse Attention (LSA)?

LSA is the mechanism inside FlashMemory-DeepSeek-V4 that decodes long context without loading the entire KV cache. A lightweight Neural Memory Indexer predicts which chunks of the cached past the current token will actually use and keeps only those KV entries, rather than holding the whole cache resident. On DeepSeek-V4 it cuts the physical KV-cache footprint to about 13.5% of the full-context baseline while improving average accuracy by 0.6%.

Why does LSA matter?

At very long context the KV cache — not the attention math — is the binding cost: it grows with every token across all layers and heads, and at 500K tokens it dominates GPU memory. By keeping only the chunks a token is predicted to need, LSA reportedly shrinks that footprint by over 90% at 500K context, which is what makes ultra-long-context serving on a model like DeepSeek-V4 affordable. Its indexer is also trained backbone-free, so the trick that saves memory is itself cheap to build.

How does LSA differ from block-sparse attention like MSA?

Both belong to the "select instead of sweep" family, but they save different resources. Block-sparse schemes (DSA, MoBA, MiniMax's MSA) keep the whole KV cache resident and gather only a few blocks per query, which cuts attention compute. LSA goes one layer down: it avoids holding most of the cache at all, so its win is the physical memory footprint. One saves FLOPs; the other saves gigabytes.


Originally posted on Learn AI Visually.

Top comments (0)