(no commit message)
authorlkcl <lkcl@web>
Fri, 5 Jan 2024 15:36:27 +0000 (15:36 +0000)
committerIkiWiki <ikiwiki.info>
Fri, 5 Jan 2024 15:36:27 +0000 (15:36 +0000)
openpower/sv/cookbook/fortran_maxloc.mdwn

index 147341a73b0a647b6d6df066c9f505af9ff26511..c8c12b775d8bb8afc7668d468368aedf89714151 100644 (file)
@@ -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 ]]