(no commit message)
authorlkcl <lkcl@web>
Tue, 14 Jun 2022 15:45:06 +0000 (16:45 +0100)
committerIkiWiki <ikiwiki.info>
Tue, 14 Jun 2022 15:45:06 +0000 (16:45 +0100)
openpower/sv/mv.swizzle.mdwn

index d18899d44e552ece69a4d8c272e631a4d1409035..bee79fcd38b3c2080e508b6738586353f15174b4 100644 (file)
@@ -170,6 +170,9 @@ the end. If no marker is present then the destination subvector length
 may be assumed to be 4.  SUBVL is considered to be the "source" subvector
 length.
 
+Pseudocode exploiting python "yield" for clarity: element-width overrides,
+Saturation and Predication also left out, for clarity:
+
 ```
     def index_src():
         for i in range(VL):
@@ -183,7 +186,6 @@ length.
                 else:
                     yield (i*SUBVL, swiz[j]-3)
 
-    # yield an outer-SUBVL, inner VL loop with DEST SUBVL
     def index_dest():
         for i in range(VL):
             for j in range(dst_subvl):