(no commit message)
authorlkcl <lkcl@web>
Thu, 24 Dec 2020 09:11:33 +0000 (09:11 +0000)
committerIkiWiki <ikiwiki.info>
Thu, 24 Dec 2020 09:11:33 +0000 (09:11 +0000)
openpower/sv/overview.mdwn

index 39b1107f6d0659179651a6bc280ee0c9d9902fb1..ac91fdb3d5a271c94032a700b1ca926b08b9e315 100644 (file)
@@ -71,7 +71,7 @@ The first augmentation to the simple loop is to add the option for all source an
         if (id == VL or irs1 == VL or irs2 == VL)
           break
 
-With some walkthroughs it is clear that the loop exits immediately after the first scalar destination result is written, and that when the destination is a Vector the loop proceeds to fill up the register file, sequentially, starting at `rd` and ending at `rd+VL-1`. The two source registers will, independently, either remain pointing at `rs1` or `rs2` respectively, or, if marked as Vectors, will march incrementally in lockstep as the destination also progresses through elements.
+With some walkthroughs it is clear that the loop exits immediately after the first scalar destination result is written, and that when the destination is a Vector the loop proceeds to fill up the register file, sequentially, starting at `rd` and ending at `rd+VL-1`. The two source registers will, independently, either remain pointing at `rs1` or `rs2` respectively, or, if marked as Vectors, will march incrementally in lockstep, producing element results along the way, as the destination also progresses through elements.
 
 In this way all the eight permutations of Scalar and Vector behaviour are covered, although without predication the scalar-destination ones are reduced in usefulness.  It does however clearly illustrate the principle.