whitespace
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Tue, 6 Feb 2024 13:42:44 +0000 (13:42 +0000)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Tue, 6 Feb 2024 13:42:49 +0000 (13:42 +0000)
openpower/sv/cookbook/fortran_maxloc.mdwn

index c8c12b775d8bb8afc7668d468368aedf89714151..b06e34b4f7c47361b1914adca215d9d10ad80b03 100644 (file)
@@ -27,10 +27,10 @@ int m2(int * const restrict a, int n)
 
 **AVX-512**
 
-An informative article by Vamsi Sripathi of Intel shows the extent of the problem
-faced by SIMD ISAs (in the case below, AVX-512). Significant loop-unrolling is performed
-which leaves blocks that need to be merged: this is carried out with "blending"
-instructions.
+An informative article by Vamsi Sripathi of Intel shows the extent of
+the problem faced by SIMD ISAs (in the case below, AVX-512). Significant
+loop-unrolling is performed which leaves blocks that need to be merged:
+this is carried out with "blending" instructions.
 
 Article:
 <https://www.intel.com/content/www/us/en/developer/articles/technical/optimizing-maxloc-operation-using-avx-512-vector-instructions.html#gs.12t5y0>
@@ -81,9 +81,9 @@ 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.
+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>