(no commit message)
authorlkcl <lkcl@web>
Tue, 15 Dec 2020 20:59:34 +0000 (20:59 +0000)
committerIkiWiki <ikiwiki.info>
Tue, 15 Dec 2020 20:59:34 +0000 (20:59 +0000)
openpower/sv/svp_rewrite/svp64/discussion.mdwn

index 266cade27ec1d3089cf359c08063e98a2b6edc13..2b7834aa2e3814db7d13f4f26137acb302170696 100644 (file)
@@ -174,3 +174,14 @@ When there are 3 bits it would be possible to indicate whether to begin from a p
 
 Note: considerable care needs to be taken when putting these horiz/vertical CRs through the Dependency Matrices
 
+     for i in range(VL)
+         y = i % 8
+         x = i // 8
+         if verticalmode:
+             CRINDEX = y*8 + x
+         else:
+             CRINDEX = i
+      CR[BA + CRINDEX] = ...
+
+