[Mlir-commits] [mlir] 69c5049 - [NFC][mlir] Update generate script for conv_3d_ncdhw_fcdhw (#133927)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Tue Apr 1 09:55:43 PDT 2025


Author: Nirvedh Meshram
Date: 2025-04-01T11:55:40-05:00
New Revision: 69c5049826711022f40d7ce699ffe1d81c3e6f08

URL: https://github.com/llvm/llvm-project/commit/69c5049826711022f40d7ce699ffe1d81c3e6f08
DIFF: https://github.com/llvm/llvm-project/commit/69c5049826711022f40d7ce699ffe1d81c3e6f08.diff

LOG: [NFC][mlir] Update generate script for conv_3d_ncdhw_fcdhw (#133927)

https://github.com/llvm/llvm-project/pull/129547 changed the IR directly
without updating the auto generate script.

Signed-off-by: Nirvedh <nirvedh at gmail.com>

Added: 
    

Modified: 
    mlir/python/mlir/dialects/linalg/opdsl/ops/core_named_ops.py

Removed: 
    


################################################################################
diff  --git a/mlir/python/mlir/dialects/linalg/opdsl/ops/core_named_ops.py b/mlir/python/mlir/dialects/linalg/opdsl/ops/core_named_ops.py
index 040663c882a08..48e724d80c926 100644
--- a/mlir/python/mlir/dialects/linalg/opdsl/ops/core_named_ops.py
+++ b/mlir/python/mlir/dialects/linalg/opdsl/ops/core_named_ops.py
@@ -1140,7 +1140,7 @@ def conv_3d_ncdhw_fcdhw(
     them to the same data type as the accumulator/output.
     """
     implements(ConvolutionOpInterface)
-    domain(D.n, D.od, D.oh, D.ow, D.f, D.kd, D.kh, D.kw, D.c)
+    domain(D.n, D.f, D.od, D.oh, D.ow, D.c, D.kd, D.kh, D.kw)
     O[D.n, D.f, D.od, D.oh, D.ow] += TypeFn.cast_signed(
         U,
         I[


        


More information about the Mlir-commits mailing list