Update appendix remapyield section
authorAndrey Miroshnikov <andrey@technepisteme.xyz>
Thu, 9 Nov 2023 19:28:41 +0000 (19:28 +0000)
committerAndrey Miroshnikov <andrey@technepisteme.xyz>
Thu, 9 Nov 2023 19:28:41 +0000 (19:28 +0000)
openpower/sv/cookbook/remap_matrix.mdwn

index 71ecad5f1b02e480bd34a0bba06b9322556c9a54..ad2302f1fe78ec86586b5bacecb9cfb3f5ce7be0 100644 (file)
@@ -409,7 +409,7 @@ This table was drawn up using the `remapyield.py` code found
 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:
@@ -437,11 +437,7 @@ index | x | y | z |  x_end) |  y_end) |  z_end)
   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 ]]