[Mlir-commits] [mlir] [mlir][tosa] Make Convolution Zero Points Inputs (PR #122939)
Luke Hutton
llvmlistbot at llvm.org
Thu Jan 30 08:35:48 PST 2025
================
@@ -539,6 +532,8 @@ class DepthwiseConvConverter
.getResult(0);
rewriter.replaceOp(op, result);
} else {
+ IntegerAttr iZp = rewriter.getI32IntegerAttr(maybeZps->inputZp);
+ IntegerAttr kZp = rewriter.getI32IntegerAttr(maybeZps->weightZp);
----------------
lhutton1 wrote:
nit: s/kZp/wZp
https://github.com/llvm/llvm-project/pull/122939
More information about the Mlir-commits
mailing list