From 22c03b8271d74b7579db45ff2d5fbd406c63b657 Mon Sep 17 00:00:00 2001 From: lkcl Date: Tue, 15 Dec 2020 20:59:34 +0000 Subject: [PATCH] --- openpower/sv/svp_rewrite/svp64/discussion.mdwn | 11 +++++++++++ 1 file changed, 11 insertions(+) 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] = ... + + + -- 2.30.2