(no commit message)
authorlkcl <lkcl@web>
Tue, 21 Nov 2023 15:46:03 +0000 (15:46 +0000)
committerIkiWiki <ikiwiki.info>
Tue, 21 Nov 2023 15:46:03 +0000 (15:46 +0000)
openpower/sv/cookbook/pospopcnt.mdwn

index dec0fb422297589c2d0cb968a81b4a0632df7058..d6d43a2aa9f77403515da6ff4d8b51a2ab202f43 100644 (file)
@@ -7,7 +7,7 @@ Positional popcount in optimised assembler is typically done on SIMD ISAs in
 around 500 lines.  Power ISA thanks to `bpermd` can be much more efficient:
 with SVP64 even more so.  The reference implementation showing the concept
 is below, and it adds up the totals of each bit set to 1 in each bit-position,
-of an array of input alues.
+of an array of input values.
 
 ```
 // Copyright (c) 2020 Robert Clausecker <fuz@fuz.su>