[Mlir-commits] [mlir] [Linalg] Add *Conv3D* matchers (PR #172141)

Abhishek Varma llvmlistbot at llvm.org
Mon Dec 15 10:07:48 PST 2025


================
@@ -1088,6 +1088,114 @@ bool isaConvolutionOpOfType<linalg::Conv3DOp>(LinalgOp op,
       .matchBody();
 }
 
+// #inputMap  = affine_map<(N, D, H, W, F, d, h, w, c)
+//                    -> (N, D + d, H + h, W + w, c)>
+// #filterMap = affine_map<(N, D, H, W, F, d, h, w, c) -> (d, h, w, c, F)>
+// #outputMap = affine_map<(N, D, H, W, F, d, h, w, c) -> (N, D, H, W, F)>
----------------
Abhishek-Varma wrote:

Raised follow-up PR addressing this : https://github.com/llvm/llvm-project/pull/172344

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


More information about the Mlir-commits mailing list