(no commit message)
authorlkcl <lkcl@web>
Thu, 4 May 2023 18:28:58 +0000 (19:28 +0100)
committerIkiWiki <ikiwiki.info>
Thu, 4 May 2023 18:28:58 +0000 (19:28 +0100)
openpower/sv/mv.swizzle.mdwn

index efa246d070c7b15acaf4ca51745a98d17723e802..75cc582d28caacfabd3cb047f0e9cfb178ffcde2 100644 (file)
@@ -247,18 +247,18 @@ zero because there is no encoding space to select between -1, 0 and 1, and
 # Pack/Unpack Mode:
 
 It is possible to apply Pack and Unpack to Vectorised 
-swizzle moves, and these instructions are of EXTRA type
-`RM-2P-1S1D-PU`. The interaction requires specific explanation
+swizzle moves. The interaction requires specific explanation
 because it involves the separate SUBVLs (with destination SUBVL
 being separate). Key to understanding is that the 
 source and
 destination SUBVL be "outer" loops instead of inner loops,
 exactly as in [[sv/remap]] Matrix mode, under the control
-of `PACK_en` and `UNPACK_en`.
+of `SVSTATE.PACK` and `SVSTATE.UNPACK`.
 
 Illustrating a
 "normal" SVP64 operation with `SUBVL!=1` (assuming no elwidth overrides):
 
+```
     def index():
         for i in range(VL):
             for j in range(SUBVL):
@@ -266,9 +266,11 @@ Illustrating a
 
     for idx in index():
         operation_on(RA+idx)
+```
 
 For a separate source/dest SUBVL (again, no elwidth overrides):
 
+```
     # yield an outer-SUBVL or inner VL loop with SUBVL
     def index_dest(outer):
         if outer:
@@ -290,6 +292,7 @@ For a separate source/dest SUBVL (again, no elwidth overrides):
             for i in range(VL):
                 for j in range(SUBVL):
                     ....
+```
 
 "yield" from python is used here for simplicity and clarity.
 The two Finite State Machines for the generation of the source