The full grid combines scores, mask, and named softmax in one validated scene. It keeps exact integers, structural mask cells, and named weights visible at the same time.
highlighted = computed this step
The attention grid
The full grid shows the three pieces together: exact dot-product scores, the causal mask, and named row softmax. It is the compact view of attention's register split: integer scores and structural exclusions before the named boundary.
scores→mask→named softmax
Reading the grid
The first row has weight 1 because it has only one allowed key. The other rows keep their exponential forms so no softmax float is shown. This is why the grid can be exact-or-named without a third category.
row 1 weight 1
Summary
The diagram is self-contained: Q and K are visible, scores recompute from them, mask cells are structural, and softmax stays named. The trust boundary is enforced by the rendered sources.