[llvm] [LoopInterchange] Improve profitability check for vectorization (PR #133672)
Ryotaro Kasuga via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 3 03:09:58 PDT 2025
================
@@ -80,6 +80,21 @@ enum class RuleTy {
ForVectorization,
};
+/// Store the information about if corresponding direction vector was negated
----------------
kasuga-fj wrote:
I did a quick check using llvm-test-suite, and found using `(direction vector, boolean value)` pairs as unique keys makes little difference in the number of entries (although in some cases the number of entries increased enormously if I stop making them unique). So changed to keep the negated and non-negated vectors separate.
https://github.com/llvm/llvm-project/pull/133672
More information about the llvm-commits
mailing list