Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion backends/arm/test/ops/test_split.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,11 @@ def test_split_with_sizes_tosa_MI(self, test_data: test_data_t):
self._test_split_tosa_MI_pipeline(self.SplitWithSizes(), test_data)

@parameterized.expand(Split.test_data)
def test_split_n_out_tosa_MI(self, test_data: test_data_t):
def test_split_one_out_tosa_MI(self, test_data: test_data_t):
self._test_split_tosa_MI_pipeline(self.SplitSingleOut(), test_data)

@parameterized.expand(Split.test_data)
def test_split_two_out_tosa_MI(self, test_data: test_data_t):
self._test_split_tosa_MI_pipeline(self.SplitTwoOut(), test_data)

@parameterized.expand(Split.test_data)
Expand Down
Loading