[llvm] [LoopInterchange] Prevent from undoing its own transformation (PR #127473)

Ryotaro Kasuga via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 19 23:36:43 PST 2025


================
@@ -1184,11 +1218,27 @@ std::optional<bool> LoopInterchangeProfitability::isProfitableForVectorization(
   return std::optional<bool>(!DepMatrix.empty());
 }
 
-bool LoopInterchangeProfitability::isProfitable(
-    const Loop *InnerLoop, const Loop *OuterLoop, unsigned InnerLoopId,
-    unsigned OuterLoopId, CharMatrix &DepMatrix,
-    const DenseMap<const Loop *, unsigned> &CostMap,
-    std::unique_ptr<CacheCost> &CC) {
+// The bubble-sort fashion algorithm is adopted to sort the loop nest, so the
+// comparison function should ideally induce a strict weak ordering required by
+// some standard C++ libraries. In particular, isProfitable should hold the
+// following properties.
+//
+// Asymmetry: If isProfitable(a, b) is true then isProfitable(b, a) is false.
----------------
kasuga-fj wrote:

My use of mathematical terms was incorrect. What I wanted to argue here is the following part in the comment https://github.com/llvm/llvm-project/pull/127473#pullrequestreview-2623437094 by @Meinersbur .
> LoopInterchange should indeed not undo its own optimization, which indicates a problem with the cost model (which should be conservative, never apply an transformation we are not pretty sure it will improve performance; if we do we were not conservative enough).

https://github.com/llvm/llvm-project/pull/127473


More information about the llvm-commits mailing list