[Mlir-commits] [mlir] [NFC][Linalg] Add `matchConvolutionOpOfType` API and make `isaConvolutionOpOfType` API a wrapper (PR #174722)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Wed Jan 14 10:18:35 PST 2026


================
@@ -373,23 +373,17 @@ static bool bodyMatcherForMaxSignedPoolOps(Value yieldVal, Block *body) {
                                                                   body);
 }
 
-// max_unsigned ops should not allow float data type.
-// TODO(#164800): Retire OPDSL logic.
 static bool bodyMatcherForMaxUnsignedPoolOps(Value yieldVal, Block *body) {
-  return bodyMatcherForPoolOps<arith::MaximumFOp, arith::MaxUIOp>(yieldVal,
-                                                                  body);
+  return bodyMatcherForPoolOps<arith::MaxUIOp>(yieldVal, body);
----------------
MaheshRavishankar wrote:

Why drop the `arith::MaximumFOp` ?

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


More information about the Mlir-commits mailing list