Skip to content

Commit cc1c477

Browse files
authored
Fix Op (Slice complex) | improve dim expression (#2094)
1 parent 68d4b9f commit cc1c477

File tree

1 file changed

+1
-1
lines changed
  • onnxscript/function_libs/torch_lib/ops

1 file changed

+1
-1
lines changed

onnxscript/function_libs/torch_lib/ops/core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7709,7 +7709,7 @@ def aten_slice_complex(
77097709
"""slice.Tensor(Tensor(a) self, int dim=0, SymInt? start=None, SymInt? end=None, SymInt step=1) -> Tensor(a)"""
77107710
if dim < 0:
77117711
# Account for the complex dimension in ONNX
7712-
dim = dim - 1
7712+
dim = len(self.shape) + dim - 1
77137713
return aten_slice(self, dim, start, end, step)
77147714

77157715

0 commit comments

Comments
 (0)