From: lkcl Date: Tue, 15 Dec 2020 20:59:34 +0000 (+0000) Subject: (no commit message) X-Git-Tag: convert-csv-opcode-to-binary~1310 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=22c03b8271d74b7579db45ff2d5fbd406c63b657;p=libreriscv.git --- diff --git a/openpower/sv/svp_rewrite/svp64/discussion.mdwn b/openpower/sv/svp_rewrite/svp64/discussion.mdwn index 266cade27..2b7834aa2 100644 --- a/openpower/sv/svp_rewrite/svp64/discussion.mdwn +++ b/openpower/sv/svp_rewrite/svp64/discussion.mdwn @@ -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] = ... + + +