From: lkcl Date: Fri, 5 Jan 2024 15:36:27 +0000 (+0000) Subject: (no commit message) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f8029d07652585224fd337fcc69a920c01c2a0f4;p=libreriscv.git --- diff --git a/openpower/sv/cookbook/fortran_maxloc.mdwn b/openpower/sv/cookbook/fortran_maxloc.mdwn index 147341a73..c8c12b775 100644 --- 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. + + + [[!tag svp64_cookbook ]]