```
+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 />