[Mlir-commits] [mlir] [mlir][tosa] Fix several bugs in `DepthwiseConv2DIsMul` (PR #129210)

Georgios Pinitas llvmlistbot at llvm.org
Fri Feb 28 05:16:32 PST 2025


================
@@ -48,6 +48,26 @@ struct DepthwiseConv2DIsMul : public OpRewritePattern<tosa::DepthwiseConv2DOp> {
       return failure();
     }
 
+    Type inputETy = inputType.getElementType();
+    Type weightETy = weightType.getElementType();
+    Type resultETy = resultType.getElementType();
----------------
GeorgeARM wrote:

Would probably move this later on where you actually use it?

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


More information about the Mlir-commits mailing list