(no commit message)
authorlkcl <lkcl@web>
Thu, 23 Jun 2022 14:27:07 +0000 (15:27 +0100)
committerIkiWiki <ikiwiki.info>
Thu, 23 Jun 2022 14:27:07 +0000 (15:27 +0100)
openpower/sv/mv.swizzle.mdwn

index d2f83f0b1c5ce3268f01f14e09aec259034fa30a..0be17eb1c93eb33c7077585add9253141a4c5adf 100644 (file)
@@ -312,7 +312,7 @@ if VERTICAL_FIRST:
     if PACK_en and UNPACK_en:
         num_runs = 1 # both are outer loops
     for substep in num_runs:
-        (src_idx, offs) = yield from index_src(UNPACK_en)
-        dst_idx = yield from index_dst(PACK_en)
+        (src_idx, offs) = yield from index_src(PACK_en)
+        dst_idx = yield from index_dst(UNPACK_en)
         move_operation(RT+dst_idx, RA+src_idx+offs)
 ```