KV Cache from scratch in nanoVLM
Back to Articles KV Cache from scratch in nanoVLM Published June 4, 2025 Update on GitHub Upvote 120 +114 Aritra Roy Gosthipaty ariG23498 Follow Kashif Rasul kashif Follow Luis lusxvr Follow Andres Marafioti andito Follow Pedro Cuenca pcuenq Follow TL;DR Introduction Revisiting the Transformer...
Back to Articles KV Cache from scratch in nanoVLM Published June 4, 2025 Update on GitHub Upvote 120 +114 Aritra Roy Gosthipaty ariG23498 Follow Kashif Rasul kashif Follow Luis lusxvr Follow Andres Marafioti andito Follow Pedro Cuenca pcuenq Follow TL;DR Introduction Revisiting the Transformer Architecture Self-Attention Computation Where Redundancy Creeps In How KV Caching Fixes It KV Caching in nanoVLM: From Theory to Practice 1. Updating KV Cache in the Attention Block 2. Tracking Cache Across Layers 3. Prefill vs Decode in the Generation Loop Summary of Changes Summary: Why KV Caching Matters TL;DR We have implemented KV Caching from scratch in our nanoVLM repository (a small codebase to train your own Vision Language Model with pure PyTorch). This gave us a 38% speedup in generation. In this blog post we cover KV Caching and all our experiences while implementing it. The lessons learnt are general and can be applied to all autoregressive language model generations. Implementing from scratch on a small codebase is a great learning experience, come along for the ride! Introduction Autoregressive language models generate text by sampling one token at a time. During inference, the model processes a given input sequence, predicts the next token, appends it to the sequence, and repeats this process until some stopping criterion: This step-by-step generation is inherently sequential: To generate token ti+1 t_{i+1} ti+1, the model must consider the entire sequence from t0 t_0 t0 to ti t_i ti. From the first instance in the above example ti+1 t_{i+1} ti+1 would be the , while all the previous tokens t0 t_0 t0 to ti t_i ti would be [What, is, in]. Although transformers are internally parallel, each new prediction requires a full forward pass through all transformer layers, which incurs a quadratic memory/compute in terms of the sequence length. This repetition also leads to computational redundancy. In this post, we explore KV Caching, an optimisation technique that mitigates this inefficiency. Table of contents: Revisiting the Transformer Architecture Where Redundancy Creeps In How KV Caching Fixes It KV Caching in nanoVLM: From Theory to Practice Summary: Why KV Caching Matters Revisiting the Transformer Architecture Before diving into caching, let’s revisit how attention operates in transformer models. A Transformer language model consists of stacked layers, each composed of: Multi-head self-attention Feed-forward network (MLP) Residual connections and layer normalisation To understand where KV Caching helps, we focus on the self-attention mechanism, specifically within a single attention head. Let’s walk through a simple PyTorch implementation to visualise the key computations. import torch input_seq_length = 5 dim_model = 10 input_ids_emb = torch.randn(input_seq_length, dim_model) W_q = torch.randn(dim_model, dim_model) W_k = torch.randn(dim_model, dim_model) W_v = torch.randn(dim_model, dim_model) Q = input_ids_emb @ W_q K = input_ids_emb @ W_k V = input_ids_emb @ W_v Self-Attention Computation For a sequence of T T T input embeddings represented as X∈RT×D X \in \mathbb{R}^{T \times D} X∈RT×D, self-attention is computed as: Q=XWQ Q = XW_Q Q=XWQ, with WQ∈RD×Dq W_Q \in \mathbb{R}^{D \times D_q} WQ∈RD×Dq K=XWK K = XW_K K=XWK, with WK∈RD×Dk W_K \in \mathbb{R}^{D \times D_k} WK∈RD×Dk V=XWV V = XW_V V=XWV, with WV∈RD×Dv W_V \in \mathbb{R}^{D \times D_v} WV∈RD×Dv Causal mask M M M to prevent future token access The final output is: Attention(X;Q,K,V)=softmax(QK⊤⋅Mdk)V \text{Attention}(X; Q, K, V) = \text{softmax}\left( \frac{QK^\top \cdot M}{\sqrt{d_k}} \right)V Attention(X;Q,K,V)=softmax(dkQK⊤⋅M)V Here’s a minimal PyTorch equivalent using a causal mask: import torch.nn.functional as F import math d_k = K.shape[-1] attention_scores = (Q @ K.T) / math.sqrt(d_k) # Lower triangular mask to prevent future token access causal_mask = torch.tril(torch.ones(input_seq_length, input_seq_length)) masked_scores = attention_scores.masked_fill(causal_mask == 0, float('-inf')) attention_weights = F.softmax(masked_scores, dim=-1) output = attention_weights @ V Where Redundancy Creeps In In autoregressive generation, the model generates one token at a time. With each step, it recomputes Q Q Q, K K K, and V V V for the entire sequence, even though the earlier tokens haven’t changed. new_token_emb = torch.randn(1, dim_model) extended_input = torch.cat([input_ids_emb, new_token_emb], dim=0) Q_ext = extended_input @ W_q K_ext = extended_input @ W_k V_ext = extended_input @ W_v # (output_ext would be computed using Q_ext, K_ext, V_ext + masking) To confirm the redundancy: torch.testing.assert_close(K, K_ext[:input_seq_length]) # test pass torch.testing.assert_close(V, V_ext[:input_seq_length]) # test pass These checks show that for all but the newest token, K K K and V V V are identical to previously computed values. Original (5×5): Extended (6×6): ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ □ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ □ ■ ■ ■ ■ ■ → ■ ■ ■ ■ ■ □ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ □ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ □ □ □ □ □ □ □ ■ = Already computed and reused □ = Recomputed unnecessarily Most of the attention computation is repeated needlessly. This gets more expensive as sequences grow. How KV Caching Fixes It To eliminate this inefficiency, we use KV Caching: After processing the initial prompt, we cache the computed keys ( K K K ) and values ( V V V ) for each layer. During generation, we only compute K K K and V V V for the new token, and append them to the cache. We compute Q Q Q for the current token and use it with the cached K K K and V V V to get the output. This changes generation from full-sequence re-computation to a lightweight, incremental update. ✅ In practice, this cache is a per-layer dictionary with keys "key" and "value", each of shape (batch_size, num_heads, seq_len_cached, head_dim). This is the foundation of how modern LLMs can generate long outputs efficiently. KV Caching in nanoVLM: From Theory to Practice Now that we understand the theory behind KV Caching, let’s see how it’s implemented in practice inside our nanoVLM repository. This is an ideal testbed, as it's a super concise and self-contained codebase. KV caching is enabled across three key components in our model: The Attention block that uses and updates the KV cache The Language model that tracks cache per layer The Generation loop that separates prefill (the initial pass with the input prompt) and sequential decode phases 1. Updating KV Cache in the Attention Block In the LanguageModelGroupedAttention class, we modify the forward function to accept and update a cache of keys and values (block_kv_cache). Previously, the model recomputed K K K and V V V at every generation step. Now we only compute Knew K_{\text{new}} Knew, Vnew V_{\text{new}} Vnew for the current token, and append them to the cached values. def forward(self, x, cos, sin, attention_mask=None, block_kv_cache=None): is_prefill = block_kv_cache is None B, T_curr, C = x.size() # Project inputs to Q, K, V q_curr, k_curr, v_curr = project_current_tokens(x) q, k_rotated = apply_rotary_pos_embd(q_curr, k_curr, cos, sin) if not is_prefill and block_kv_cache['key'] is not None: # Append new keys and values to the cache k = torch.cat([block_kv_cache['key'], k_rotated], dim=2) v = torch.cat([block_kv_cache['value'], v_curr], dim=2) else: # First pass (prefill) — no cache k, v = k_rotated, v_curr block_kv_cache = {'key': k, 'value': v} return attention_output, block_kv_cache 2. Tracking Cache Across Layers In the LanguageModel class, we introduce layer-wise cache tracking. The start_pos argument helps the model compute correct rotary positional encodings for newly generated tokens. def forward(self, x, kv_cache=None, start_pos=0): T_curr = x.size(1) position_ids = torch.arange(start_pos, start_pos + T_curr, device=x.device) cos, sin = self.rotary_embd(position_ids) for i, block in enumerate(self.blocks): # Pass per-layer KV cache x, kv_cache[i] = block(x, cos, sin, attention_mask, kv_cache[i]) return x, kv_cache kv_cache: A list of dictionaries, one per transformer layer, holding previous keys and values. start_pos: Ensures that rotary embeddings are aligned with current generation index. 3. Prefill vs Decode in the Generation Loop The biggest architectural change is in the generate() method of the VisionLanguageModel. We split generation into two stages: PREFILL PHASE: Encode the full prompt and build the initial cache. DECODE PHASE: Generate tokens one at a time using cached keys/values. PREFILL PHASE (cache construction) [Prompt: "What is"] → [Transformer] → [Cache: K, V for all layers] DECODE PHASE (token-by-token) [Token: "the"] → [Q("the") + cached K/V] → [next token: "?"] → ... Here’s the corresponding code: # PREFILL: Process the input prompt, fill the cache prompt_output, kv_cache_list = self.forward( inputs, kv_cache=None, start_pos=0 ) # DECODE: Generate one token at a time using cached K/V for i in range(max_new_tokens): next_token = sample_from(prompt_output) decode_output, kv_cache_list = self.forward( next_token, kv_cache=kv_cache_list, start_pos=current_position # updated with each step ) prompt_output = decode_output By separating these phases, we avoid redundant computation and dramatically speed up inference, especially for long prompts. Summary of Changes Module Original Behaviour New Behaviour LanguageModelGroupedAttention.forward Recomputes Q Q Q, K K K, V V V on every step Uses and updates KV cache LanguageModel.forward No memory of previous state Tracks per-layer KV cache, handles start_pos VisionLanguageModel.generate One-phase generation loop Split into prefill and decode phases Summary: Why KV Caching Matters Benefit Explanation Incremental growth Cache grows by one row per new token Position-aware decoding start_pos ensures correctness of position encoding calculations Efficiency Reduces per-token inference to O(seq len) instead of quadratic KV caching eliminates unnecessary computation during autoregressive generation, enabling faster and more efficient inference, especially in long sequences and real-time applications. This is a trade-off between speed and memory, and its drawbacks can be more complex code and restricting fancier inference schemes, like beam-search, etc. KV caching is a popular method for speeding up LLM inference, making it possible to run them on consumer hardware, and now you know how it works too! More Articles from our Blog nlpcommunityresearch Introducing the Ettin Reranker Family 53 May 19, 2026 multimodalnlpcommunity Training and Finetuning Multimodal Embedding & Reranker Models with Sentence Transformers 74 April 16, 2026 Community samuellimabraz Jun 4, 2025 Thanks for this great article! I'm learning a lot from the nanoVLM project.I'm not an expert in gen ai but I noticed the attention calculation example seems to be missing the scaling √(d_k). Is this intentional for simplification? d_k = K.shape[-1] attention_scores = (Q @ K.T) / math.sqrt(d_k) From my understanding this scaling prevents the dot product growing too large and control the softmax region See translation 1 reply · ➕ 3 3 🔥 2 2 ❤️ 2 2 + ariG23498 Article author Jun 4, 2025 This is such a good catch! Would you like to raise a PR to the blog post with the changes to the code? Here is the source for the blog post: https://github.com/huggingface/blog/blob/main/kv-cache.md See translation 👍 2 2 🤗 2 2 ❤️ 1 1 + ritwikraha Jun 4, 2025 Nice read, I found the prefill and decode explanation very intuitive. Good job 👏 See translation 😎 2 2 + Reply not-lain Jun 5, 2025 made this visual representation of what happens inside the attention mechanism when using kv caching.thought i'd share it with the community 🤗 See translation 1 reply · 🔥 8 8 + ariG23498 Article author Jun 6, 2025 VERY COOL! Thanks for sharing. See translation 😎 1 1 + AmarnathReddy0201 Aug 22, 2025 Hi Team,kv_cache only for text? Is it doing for images in this Articles. See translation 1 reply · not-lain Aug 22, 2025 • edited Aug 23, 2025 caching results can be used for diffusion applications as well, although not similar to KV caching since kv caching is optimized for next token prediction while in diffusion the full sequence already exists.the short answer to your question is yes kv caching is only for next token prediction but there are other caching techniques out there for other taskstry checking what PrunaAI has been doing to optimize diffusion models, here's a link to one of their previous presentations : LINKEDIN_POST See translation EditPreview Upload images, audio, and videos by dragging in the text input, pasting, or clicking here. Tap or paste here to upload images Comment · Sign up or log in to comment Upvote 120 +108Source: Hugging Face — Published — Category: Open Source