Skip to content

Commit 06b44d9

Browse files
committed
enable passing tests and remove broken split test.
Signed-off-by: Rob Elliott <[email protected]>
1 parent 7583756 commit 06b44d9

File tree

5 files changed

+0
-11
lines changed

5 files changed

+0
-11
lines changed

backends/arm/test/ops/test_cat.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@ def test_cat_tosa_BI(self, operands: tuple[torch.Tensor, ...], dim: int):
127127

128128
# TODO: Remove @unittest.expectedFailure when this issue is fixed in Regor
129129
@parameterized.expand(Cat.test_parameters)
130-
@unittest.expectedFailure
131130
def test_cat_u55_BI(self, operands: tuple[torch.Tensor, ...], dim: int):
132131
test_data = (operands, dim)
133132
self._test_cat_u55_BI_pipeline(self.Cat(), test_data)

backends/arm/test/ops/test_expand.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,5 @@ def test_expand_tosa_BI(self, test_input, multiples):
104104

105105
# Expected failure since tosa.TILE is unsupported by Vela.
106106
@parameterized.expand(Expand.test_parameters)
107-
@unittest.expectedFailure
108107
def test_expand_u55_BI(self, test_input, multiples):
109108
self._test_expand_tosa_u55_pipeline(self.Expand(), (test_input, multiples))

backends/arm/test/ops/test_repeat.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,5 @@ def test_repeat_tosa_BI(self, test_input, multiples):
105105

106106
# Expected failure since tosa.TILE is unsupported by Vela.
107107
@parameterized.expand(Repeat.test_parameters)
108-
@unittest.expectedFailure
109108
def test_repeat_u55_BI(self, test_input, multiples):
110109
self._test_repeat_tosa_u55_pipeline(self.Repeat(), (test_input, multiples))

backends/arm/test/ops/test_slice.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,5 @@ def test_slice_nhwc_tosa_BI(self, test_tensor: torch.Tensor):
111111
# Fails during Vela compilation when trying to use a Tuple as a Named tuple,
112112
# Could be Vela Issue, wait until Regor.
113113
@parameterized.expand(Slice.test_tensors)
114-
@unittest.expectedFailure
115114
def test_slice_u55_BI(self, test_tensor: torch.Tensor):
116115
self._test_slice_u55_BI_pipeline(self.Slice(), (test_tensor,))

backends/arm/test/ops/test_split.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -130,10 +130,3 @@ def test_split_n_out_tosa_MI(self, test_data: test_data_t):
130130
@parameterized.expand(Split.test_data)
131131
def test_split_tosa_BI(self, test_data: test_data_t):
132132
self._test_split_tosa_BI_pipeline(self.Split(), test_data)
133-
134-
# Fails during Vela compilation when trying to use a Tuple as a Named tuple,
135-
# Could be Vela Issue, wait until Regor.
136-
@parameterized.expand(Split.test_data)
137-
@unittest.expectedFailure
138-
def test_split_u55_BI(self, test_data: test_data_t):
139-
self._test_split_u55_BI_pipeline(self.Split(), test_data)

0 commit comments

Comments
 (0)