Skip to content

Commit

Permalink
Merge pull request #9958 from mnalam-p/disable_auto_simd_for_commoned…
Browse files Browse the repository at this point in the history
…_piv_usage-v0.21.0-release

(0.21.0)  Disable vectorization of induction variable
  • Loading branch information
pshipton committed Jun 22, 2020
2 parents a922907 + d2b626e commit 7cbda56
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions runtime/compiler/optimizer/SPMDParallelizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -698,8 +698,9 @@ bool TR_SPMDKernelParallelizer::visitNodeToSIMDize(TR::Node *parent, int32_t chi

if (trace && !platformSupport)
traceMsg(comp, " Found use of induction variable at node [%p] - platform does not support this vectorization\n", node);

return platformSupport;
if (trace && platformSupport)
traceMsg(comp, " Found use of induction variable at node [%p] - vectorization disabled for now\n", node);
return false; // see : eclipse/openj9/9446
}
}
}
Expand Down

0 comments on commit 7cbda56

Please sign in to comment.