Skip to content

Commit e95e0e4

Browse files
committed
Removing incorrect test and removing cast from split impl
1 parent 797d510 commit e95e0e4

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

py/torch_tensorrt/dynamo/conversion/impl/split.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import Any, Dict, List, Optional, Sequence, Tuple, Union, cast
1+
from typing import Any, Dict, List, Optional, Sequence, Tuple, Union
22

33
import numpy as np
44
import torch

tests/py/dynamo/conversion/test_split_aten.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ def forward(self, input):
3333
@parameterized.expand(
3434
[
3535
("split_size_or_sections_list_no_dim_list", [1, 4]),
36-
("split_size_or_sections_list_no_dim_not_full_list", [1, 3]),
3736
]
3837
)
3938
def test_split_list(self, _, split_size_or_tensor):

0 commit comments

Comments
 (0)