[Mlir-commits] [mlir] [mlir][Python] fix dialect extensions which bind C types (PR #175405)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Sat Jan 10 20:50:42 PST 2026
================
@@ -45,33 +55,38 @@ InferConvolutionDimensions(MlirOperation op) {
return std::nullopt;
}
- return dims;
+ return PyLinalgConvolutionDimensions{
+ dims.batch, dims.outputImage, dims.outputChannel, dims.filterLoop,
+ dims.inputChannel, dims.depth, dims.strides, dims.dilations};
----------------
PragmaTwice wrote:
same as above.
https://github.com/llvm/llvm-project/pull/175405
More information about the Mlir-commits
mailing list