From b20769247915010266eb59df7f03b92258d3cebc Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sat, 1 Apr 2023 13:52:31 +0100 Subject: [PATCH] whitespace --- openpower/sv/rfc/ls010.mdwn | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/openpower/sv/rfc/ls010.mdwn b/openpower/sv/rfc/ls010.mdwn index 6480051e8..433025c65 100644 --- a/openpower/sv/rfc/ls010.mdwn +++ b/openpower/sv/rfc/ls010.mdwn @@ -179,17 +179,17 @@ numbering everywhere because the ANSI c specification is inherently LSB0: Example Vector-looped add operation implementation when elwidths are 64-bit: ``` - # add RT, RA,RB using the "uint64_t" union member, "l" - for i in range(VL): - int_regfile[RT].l[i] = int_regfile[RA].l[i] + int_regfile[RB].l[i] + # vector-add RT, RA,RB using the "uint64_t" union member, "l" + for i in range(VL): + int_regfile[RT].l[i] = int_regfile[RA].l[i] + int_regfile[RB].l[i] ``` However if elwidth overrides are set to 16 for both source and destination: ``` - # add RT, RA, RB using the "uint64_t" union member "s" - for i in range(VL): - int_regfile[RT].s[i] = int_regfile[RA].s[i] + int_regfile[RB].s[i] + # vector-add RT, RA, RB using the "uint64_t" union member "s" + for i in range(VL): + int_regfile[RT].s[i] = int_regfile[RA].s[i] + int_regfile[RB].s[i] ``` Hardware Architectural note: to avoid a Read-Modify-Write at the register @@ -208,10 +208,9 @@ Performance designs. ## Scalar Identity Behaviour -SVP64 is designed so that when the prefix is all zeros, and -VL=1, no effect or -influence occurs (no augmentation) such that all standard Power ISA -v3.0/v3 1 instructions covered by the prefix are "unaltered". This +SVP64 is designed so that when the prefix is all zeros, and VL=1, no +effect or influence occurs (no augmentation) such that all standard Power +ISA v3.0/v3 1 instructions covered by the prefix are "unaltered". This is termed `scalar identity behaviour` (based on the mathematical definition for "identity", as in, "identity matrix" or better "identity transformation"). -- 2.30.2