projects
/
libreriscv.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9caa3bc
)
(no commit message)
author
lkcl
<lkcl@web>
Fri, 5 Jan 2024 15:36:27 +0000
(15:36 +0000)
committer
IkiWiki
<ikiwiki.info>
Fri, 5 Jan 2024 15:36:27 +0000
(15:36 +0000)
openpower/sv/cookbook/fortran_maxloc.mdwn
patch
|
blob
|
history
diff --git
a/openpower/sv/cookbook/fortran_maxloc.mdwn
b/openpower/sv/cookbook/fortran_maxloc.mdwn
index 147341a73b0a647b6d6df066c9f505af9ff26511..c8c12b775d8bb8afc7668d468368aedf89714151 100644
(file)
--- a/
openpower/sv/cookbook/fortran_maxloc.mdwn
+++ b/
openpower/sv/cookbook/fortran_maxloc.mdwn
@@
-79,6
+79,14
@@
int ret_pos;
VMIN8(v8, ret_pos, ret);
```
+**Rust Assembler Intrinsics**
+
+An approach by jvdd shows that the two stage approach of "blending" arrays of
+results in a type of parallelised "leaf node depth first" search seems to be
+a common technique.
+
+<https://github.com/jvdd/argminmax/blob/main/src/simd/simd_u64.rs>
+
[[!tag svp64_cookbook ]]