We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c9bede commit f8314c3Copy full SHA for f8314c3
src/codegen.cpp
@@ -10315,6 +10315,10 @@ extern "C" void jl_init_llvm(void)
10315
clopt = llvmopts.lookup("combiner-store-merge-dependence-limit");
10316
if (clopt && clopt->getNumOccurrences() == 0)
10317
cl::ProvidePositionalOption(clopt, "4", 1);
10318
+ // Enable VPlan native path for outer loop vectorization
10319
+ clopt = llvmopts.lookup("enable-vplan-native-path");
10320
+ if (clopt->getNumOccurrences() == 0)
10321
+ cl::ProvidePositionalOption(clopt, "1", 1);
10322
10323
clopt = llvmopts.lookup("time-passes");
10324
if (clopt && clopt->getNumOccurrences() > 0)
0 commit comments