Skip to content

Commit ef93d92

Browse files
committed
Arm backend: Update failures to slice operator for int16x8
1 parent 57a7903 commit ef93d92

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

backends/arm/test/ops/test_slice.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ def test_slice_tensor_tosa_INT_nhwc(test_data: torch.Tensor):
7878

7979

8080
x_fails = {
81-
"ones_slice_3": "MLETORCH-1402: Slice operator has incorrect number of inputs",
82-
"ones_slice_4": "MLETORCH-1402: Slice operator has incorrect number of inputs",
81+
"ones_slice_3": "MLETORCH-1402: Compiler limitation when passing more than 255 char as argument to FVP.",
82+
"ones_slice_4": "MLETORCH-1402: Compiler limitation when passing more than 255 char as argument to FVP.",
8383
}
8484

8585

@@ -179,7 +179,7 @@ def test_slice_tensor_16a8w_tosa_INT(test_data: torch.Tensor):
179179
pipeline.run()
180180

181181

182-
@common.parametrize("test_data", test_data_suite)
182+
@common.parametrize("test_data", test_data_suite, x_fails)
183183
@common.XfailIfNoCorstone300
184184
@pytest.mark.xfail(
185185
reason="Vela compilation fails with 'Invalid arguments' for int16 slice operations"
@@ -206,7 +206,7 @@ def test_slice_tensor_16a8w_u55_INT16(test_data: torch.Tensor):
206206
pipeline.run()
207207

208208

209-
@common.parametrize("test_data", test_data_suite)
209+
@common.parametrize("test_data", test_data_suite, x_fails)
210210
@common.XfailIfNoCorstone320
211211
@pytest.mark.xfail(
212212
reason="Vela compilation fails with 'Invalid arguments' for int16 slice operations"

0 commit comments

Comments
 (0)