[PATCH] D57779: [SLP] Add support for throttling.

Dinar Temirbulatov via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 8 08:35:44 PDT 2021


dtemirbulatov added inline comments.


================
Comment at: llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp:5933
+       I = I->getNextNode()) {
+    if (Reduceable.count(I)) {
+      Reduced.insert(I);
----------------
dtemirbulatov wrote:
> Perhaps we could also check here for !BS->getScheduleData(I)->isPartOfBundle() and further shrink the region.
ah, no, this instruction could belong to a real gather node.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D57779/new/

https://reviews.llvm.org/D57779



More information about the llvm-commits mailing list