Skip to content

Commit 7a22e8c

Browse files
Martin LindströmMartin Lindström
authored andcommitted
Raise atol in MobileNetV3 unit tests
MobileNetV3 was sporadically failing with the previously set absolute difference threshold. Raise it to prevent flaky test status. Change-Id: I78d4336c3bf96902ee8b4536391c45f8a97b6533
1 parent db21501 commit 7a22e8c

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)