Skip to content

Commit

Permalink
Update transpose.cpp
Browse files Browse the repository at this point in the history
Removes offending pragma causing issues with Intel compiler.
  • Loading branch information
jturney authored Sep 18, 2023
1 parent 46fba46 commit 5606465
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/transpose.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1034,7 +1034,6 @@ static void axpy_1D(const floatType *__restrict__ A, floatType *__restrict__ B,
else B[i] = alpha * A[i] + beta * B[i];)
} else {
if (useStreamingStores)
#pragma vector nontemporal
HPTT_DUPLICATE(spawnThreads,
for (int32_t i = myStart; i < myEnd; i++) if (conjA) B[i] =
alpha * conj(A[i]);
Expand Down

0 comments on commit 5606465

Please sign in to comment.