From dd33433cb60076d7b3c01665318fa713f5024536 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Tue, 6 Feb 2024 13:42:44 +0000 Subject: [PATCH] whitespace --- openpower/sv/cookbook/fortran_maxloc.mdwn | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/openpower/sv/cookbook/fortran_maxloc.mdwn b/openpower/sv/cookbook/fortran_maxloc.mdwn index c8c12b775..b06e34b4f 100644 --- a/openpower/sv/cookbook/fortran_maxloc.mdwn +++ b/openpower/sv/cookbook/fortran_maxloc.mdwn @@ -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: @@ -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. -- 2.30.2