Skip to content
This repository was archived by the owner on Oct 11, 2025. It is now read-only.

Commit 52bf01f

Browse files
[NFC][mlir] Update generate script for conv_3d_ncdhw_fcdhw (#133927)
llvm/llvm-project#129547 changed the IR directly without updating the auto generate script. Signed-off-by: Nirvedh <[email protected]>
1 parent 79da6e8 commit 52bf01f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1140,7 +1140,7 @@ def conv_3d_ncdhw_fcdhw(
11401140
them to the same data type as the accumulator/output.
11411141
"""
11421142
implements(ConvolutionOpInterface)
1143-
domain(D.n, D.od, D.oh, D.ow, D.f, D.kd, D.kh, D.kw, D.c)
1143+
domain(D.n, D.f, D.od, D.oh, D.ow, D.c, D.kd, D.kh, D.kw)
11441144
O[D.n, D.f, D.od, D.oh, D.ow] += TypeFn.cast_signed(
11451145
U,
11461146
I[

0 commit comments

Comments
 (0)