Skip to content

Commit db0b82a

Browse files
gs-olivenarendasan
authored andcommitted
fix: Add support for default dimension in aten.cat (#1863)
1 parent 847ebff commit db0b82a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

py/torch_tensorrt/fx/test/converters/aten_op/test_cat_aten.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class TestCatConverter(DispatchTestCase):
99
@parameterized.expand(
1010
[
1111
("pos", 1),
12-
# ("neg", -2), #Dynamo tracer issue
12+
("neg", -2),
1313
]
1414
)
1515
def test_cat(self, _, dim):
@@ -27,7 +27,7 @@ def forward(self, x, y, z):
2727
@parameterized.expand(
2828
[
2929
("pos", 1),
30-
# ("neg", -2), #Dynamo tracer issue
30+
("neg", -2),
3131
]
3232
)
3333
def test_cat_dynamic_shape(self, _, dim):

0 commit comments

Comments
 (0)