Zenaique

Explain when an architecture uses cross-attention vs self-attention. Give concrete examples.

Short answer·Medium·4.0 · 0·~3 min·Asked atAdaFireworks AiUber·Relevant atMicrosoft
Attempt it

Explain the difference between self-attention and cross-attention in terms of where Q, K, V come from. When does each appear in a real architecture? Give concrete examples (BERT, GPT, T5).

Free · 2 AI evals / day
TL;DR

Self-attention: Q, K, V from the same sequence (BERT, GPT, Llama). Cross-attention: Q from one sequence, K/V from another (T5, BART decoders). Decoder-only LLMs skip cross-attention because they have no separate encoder.

Memory aid
Sign in to see the mnemonic that makes this stick.
Easy to grasp

Imagine taking notes during a lecture. Self-attention is like glancing back at your own notes as you write the next line: one notebook, one stream. Cross-attention is like a translator at a desk: they look at a textbook open on their left while writing on a fresh page on their right. The pen on the right page is the Query; the textbook on the left is what they're keying and valuing against. Decoder-only models like GPT and Llama are the note-taker with one notebook. T5 and BART are the translator with two documents in play.

Concept explanation~2 min read

Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.

Self-attention and cross-attention differ entirely in where Q, K, and V come from, and that one routing fact determines which architectural family a model belongs to. Get the routing right and BERT, GPT, T5, and Whisper sort themselves out.

This deep dive walks the Q/K/V routing, then maps each modern architectural family to its attention regime, and closes on the production deployment lens that explains why 2026 chat LLMs are uniformly decoder-only while multimodal stacks still use cross-attention.

Mental model: count the towers. Same tower architectures use only self-attention. Two tower architectures use both self-attention within each tower and cross-attention between them.

The Q/K/V routing, explicitly

Self-attention

One input tensor x, three learned projections:

  • q = W_Q x
  • k = W_K x
  • v = W_V x

The attention pattern is T × T. Each token attends to other tokens in the same sequence, subject to a mask (bidirectional in BERT, causal in GPT/Llama).

Cross-attention

Two input tensors, asymmetric routing:

  • q = W_Q x_dec from the decoder side
  • k = W_K x_enc and v = W_V x_enc from the encoder side

The attention pattern is T_dec × T_enc, non-square when the sequence lengths differ (which they almost always do).

Why the direction matters

The convention is fixed: Q is from the decoder, K and V are from the encoder. Reversing this (encoder-Q, decoder-K/V) would mean the encoder is attending to the decoder, which is exactly the wrong direction for grounding generation in the source. This is the single most common interview mistake on this topic, so worth memorizing the direction explicitly.

Key insight: the asymmetric routing is what turns 'attention' into 'cross-attention'. Same routing under both Q and K/V is just plain self-attention with two streams concatenated.

Where each appears in real architectures
The production-deployment lens
Where two tower cross-attention still wins
Sign in to unlock the full deep dive.

Situations where this technique stops working.

Sign in to see when this approach fails.

2–4 min · Everything important, quickly.

Sign in to see the quick scan of the deep dive.
AspectSelf-attentionCross-attention
Q sourceSame sequence xDecoder sequence x_dec
K, V sourceSame sequence xEncoder sequence x_enc
Attention matrix shapeT × T (square)T_dec × T_enc (non-square)
KV cache during decodingGrows one row per tokenFixed once encoder runs
Production deploymentOne-tower, one cache layoutTwo tower, dual cache regimes
Used inBERT, GPT, Llama, all encodersT5/BART decoder, Whisper, Flamingo

Real products, models, and research that use this idea.

  • BERT, RoBERTa, DeBERTa: encoder-only with bidirectional self-attention. No cross-attention anywhere.
  • GPT-5.5, Claude Opus 4.7, Llama 4 Maverick, Gemini 3.1 Pro, DeepSeek V4: decoder-only with causal self-attention only.
Sign in to see more production examples.

What an interviewer would ask next. Try answering before peeking at the approach.

QWhy doesn't the cross-attention KV cache grow across decoding steps the way self-attention's does?
A

Because K and V in cross-attention are projections of the encoder output, which is computed once and then held fixed for the entire generation. Each decode step uses a new Q but the same cached K and V. Self-attention's cache must grow because each newly generated token contributes a new K and V row.

2 more follow-ups an interviewer would ask next. Sign in to reveal them.

Red flags & common mistakes

The phrases that signal junior thinking. Click to expand.

Most common mistake

Reversing the direction of cross-attention. In encoder decoder cross-attention, Q is from the decoder and K/V are from the encoder, not the other way around.

Sign in to see all red flags and common mistakes.

60 second bullets to scan on the way to the call.

  • Q/K/V routing for self vs cross attention

  • Direction of Q vs K/V flow in cross-attention

Sign in to unlock the revision sheet.

Primary sources. Browse if you want the original framing.

Similar questions

Same topic, related formats. Practice these next.

4 curated
Next question
Explain scaled dot product attention.
Short answer·Medium