projects
/
libreriscv.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b7c1943
)
(no commit message)
author
lkcl
<lkcl@web>
Tue, 21 Nov 2023 15:46:03 +0000
(15:46 +0000)
committer
IkiWiki
<ikiwiki.info>
Tue, 21 Nov 2023 15:46:03 +0000
(15:46 +0000)
openpower/sv/cookbook/pospopcnt.mdwn
patch
|
blob
|
history
diff --git
a/openpower/sv/cookbook/pospopcnt.mdwn
b/openpower/sv/cookbook/pospopcnt.mdwn
index dec0fb422297589c2d0cb968a81b4a0632df7058..d6d43a2aa9f77403515da6ff4d8b51a2ab202f43 100644
(file)
--- a/
openpower/sv/cookbook/pospopcnt.mdwn
+++ b/
openpower/sv/cookbook/pospopcnt.mdwn
@@
-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
v
alues.
```
// Copyright (c) 2020 Robert Clausecker <fuz@fuz.su>