The xdim, ydim, and zdim were set to match the values specified in the svshape
instruction for the above matrix multiply example.
-`x`, 'y`, and `z` are iterators for the three loops, with a range between 0 and
+`x`, `y`, and `z` are iterators for the three loops, with a range between 0 and
`SVxd-1`, `SVyd-1`, `SVzd-1` respectively.
For the above `svshape` instruction example:
11 | 1 | 1 | 2 | T | T | T
```
-If the `x`, `y`, and `z` sequences are compared with the inner product index
-table, there are some resemblances. Swapping the `x` and `y` (permute=0b10)
-shows that matrix X indices correspond to `y`, matrix Y indices correspond to
-`x` (if the following equation used: `x+z*z_end`), and matrix Z indices
-correspond to `z`.
+These sequences correspond to the row/column indices in the table above.
[[!tag svp64_cookbook ]]