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

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


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

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

>From 97f1bc6dfc6c6397f7df1dae1179cbddfe4b7776 Mon Sep 17 00:00:00 2001
From: "Zhang, Yifei" <yifei.zhang at intel.com>
Date: Tue, 27 Aug 2024 00:28:16 -0700
Subject: [PATCH] [mlir][Linalg] Fix match convolution message

Fix the message part of bugfix commit `2ef3dcf`.
---
 mlir/lib/Dialect/Linalg/IR/LinalgInterfaces.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 "";
   }



More information about the Mlir-commits mailing list