Skip to content

Commit 010f73c

Browse files
authored
Arm backend: Remove xfails on EQ op tests (#15675)
Some tests in test_eq.py were set to xfail due to a problem with numerical accuracy. The problem appears to have gone away so the xfails are removed with this patch. Signed-off-by: Martin Lindström <Martin.Lindstroem@arm.com>
1 parent 556142c commit 010f73c

File tree

1 file changed

+2
-16
lines changed

1 file changed

+2
-16
lines changed

backends/arm/test/ops/test_eq.py

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -174,14 +174,7 @@ def test_eq_scalar_u55_INT(test_module):
174174
pipeline.run()
175175

176176

177-
@common.parametrize(
178-
"test_module",
179-
test_data_tensor,
180-
xfails={
181-
"eq_tensor_rank4_randn": "MLETORCH-847: Boolean eq result unstable on U85",
182-
},
183-
strict=False,
184-
)
177+
@common.parametrize("test_module", test_data_tensor)
185178
@common.XfailIfNoCorstone320
186179
def test_eq_scalar_u85_INT_tensor(test_module):
187180
pipeline = EthosU85PipelineINT[input_t](
@@ -193,14 +186,7 @@ def test_eq_scalar_u85_INT_tensor(test_module):
193186
pipeline.run()
194187

195188

196-
@common.parametrize(
197-
"test_module",
198-
test_data_scalar,
199-
xfails={
200-
"eq_scalar_rank4_randn": "MLETORCH-847: Boolean eq result unstable on U85",
201-
},
202-
strict=False,
203-
)
189+
@common.parametrize("test_module", test_data_scalar)
204190
@common.XfailIfNoCorstone320
205191
def test_eq_scalar_u85_INT(test_module):
206192
pipeline = EthosU85PipelineINT[input_t](

0 commit comments

Comments
 (0)