[Mlir-commits] [mlir] [mlir][Linalg] Fix match convolution message (PR #106197)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Tue Aug 27 00:44:53 PDT 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-mlir

Author: None (yifeizh2)

<details>
<summary>Changes</summary>

Fix the message part of bugfix commit `2ef3dcf`.

---
Full diff: https://github.com/llvm/llvm-project/pull/106197.diff


1 Files Affected:

- (modified) mlir/lib/Dialect/Linalg/IR/LinalgInterfaces.cpp (+1-1) 


``````````diff
diff --git a/mlir/lib/Dialect/Linalg/IR/LinalgInterfaces.cpp b/mlir/lib/Dialect/Linalg/IR/LinalgInterfaces.cpp
index d5c21fb5d845e9..0c48a5aeb26a26 100644
--- a/mlir/lib/Dialect/Linalg/IR/LinalgInterfaces.cpp
+++ b/mlir/lib/Dialect/Linalg/IR/LinalgInterfaces.cpp
@@ -919,7 +919,7 @@ mlir::linalg::detail::getMatchConvolutionMessage(MatchConvolutionResult res) {
   case MatchConvolutionResult::NonOutputDimNotReduction:
     return "expected all iterators not used to access outputs to be reduction";
   case MatchConvolutionResult::EmptyConvolvedDims:
-    return "FIXME";
+    return "expected convolved dim to be non-empty";
   case MatchConvolutionResult::Success:
     return "";
   }

``````````

</details>


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


More information about the Mlir-commits mailing list