Skip to content

Commit 17d045f

Browse files
martinlsmMartin Lindström
authored andcommitted
Arm backend: Raise atol in MobileNetV3 unit tests (#9959)
MobileNetV3 was sporadically failing with the previously set absolute difference threshold. Raise it to prevent flaky test status. Co-authored-by: Martin Lindström <[email protected]>
1 parent f991192 commit 17d045f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

backends/arm/test/models/test_mobilenet_v3_arm.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def test_mv3_tosa_BI():
4646
aten_op=[],
4747
exir_op=[],
4848
use_to_edge_transform_and_lower=True,
49-
atol=0.3,
49+
atol=0.5,
5050
qtol=1,
5151
)
5252
pipeline.run()
@@ -63,7 +63,7 @@ def test_mv3_u55_BI():
6363
exir_ops=[],
6464
run_on_fvp=True,
6565
use_to_edge_transform_and_lower=True,
66-
atol=0.3,
66+
atol=0.5,
6767
qtol=1,
6868
)
6969
pipeline.run()
@@ -80,7 +80,7 @@ def test_mv3_u85_BI():
8080
exir_ops=[],
8181
run_on_fvp=True,
8282
use_to_edge_transform_and_lower=True,
83-
atol=0.3,
83+
atol=0.5,
8484
qtol=1,
8585
)
8686
pipeline.run()

0 commit comments

Comments
 (0)