move words to images
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Wed, 6 Dec 2023 14:47:36 +0000 (14:47 +0000)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Wed, 6 Dec 2023 14:47:36 +0000 (14:47 +0000)
openpower/sv/cookbook/pospopcnt.mdwn

index bf638c2a47de631ca8f4a6b85f0a0c0be3ce266d..8a1e28ae37fb5eefe2017da895910c0a861d6e49 100644 (file)
@@ -54,25 +54,22 @@ sv.bc/all 16, *0, -0x28   # reduce CTR by VL and stop if -ve
 ```
 
 
+Array popcount is just standard popcount function
+([[!wikipedia Hamming weight]]) on an array of values, horizontally,
+however positional popcount is different (vertical). Refer to Fig.1
+
 
 <img src="/openpower/sv/cookbook/ArrayPopcnt.drawio.svg"
      alt="pospopcnt" width="70%" />
 
-<br />
+Positional popcount adds up the totals of each bit set to 1 in each
+bit-position, of an array of input values. Refer to Fig.2
 
 <img src="/openpower/sv/cookbook/PositionalPopcnt.drawio.svg"
      alt="pospopcnt" width="60%" />
 
 
 
-Array popcount is just standard popcount function
-([[!wikipedia Hamming weight]]) on an array of values, horizontally,
-however positional popcount is different (vertical). Refer to Fig.1
-
-
-
-Positional popcount adds up the totals of each bit set to 1 in each
-bit-position, of an array of input values. Refer to Fig.2
 
 <br />