nested for-loops over the array would be done. See executable
python reference code for further details.
+*Note: permute=0b110 and permute=0b111 enable Indexed REMAP Mode,
+described below*
+
+## Indexed Mode
+
+Indexed Mode activates reading of the element indices from the GPR.
+In its simplest form (without elwidth overrides):
+
+```
+def index_remap(i):
+ return GPR(SVSHAPE.SVGPR+i)
+
+for i in 0..VL-1:
+ GPR(RT + indexed_remap(i) + SVSHAPE.offset) = ....
+```
+