[PATCH] D109368: [LV] Don't vectorize if we can prove RT + vector cost >= scalar cost.
Evgeniy via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 1 00:04:15 PDT 2021
ebrevnov added inline comments.
================
Comment at: llvm/lib/Transforms/Vectorize/LoopVectorize.cpp:460
+ if (MinProfitableTripCount.isZero())
+ this->MinProfitableTripCount = VecWidth;
+ else
----------------
IHMO we better keep semantic of 'MinProfitableTripCount' and not change it's value to something not coming from profitability considerations. Can easily do required adjustments at use site(s).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D109368/new/
https://reviews.llvm.org/D109368
More information about the llvm-commits
mailing list