Skip to content

Commit

Permalink
Merge pull request #4704 from amritahs-ibm/saxpy_perf_fix
Browse files Browse the repository at this point in the history
Fix regression SAXPY when compiler with OpenXL compiler.
  • Loading branch information
martin-frbg authored May 18, 2024
2 parents 25b34e6 + 87b3d90 commit aa259b1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions kernel/power/saxpy_power10.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ int CNAME(BLASLONG n, BLASLONG dummy0, BLASLONG dummy1, FLOAT da, FLOAT *x, BLAS
saxpy_kernel_64(n1, &x[i], &y[i], da);

i += n1;
#if defined(__clang__)
#pragma clang loop interleave_count(2)
#endif
while(i < n)
{

Expand Down

0 comments on commit aa259b1

Please sign in to comment.