Skip to content

Commit 87b7549

Browse files
committed
ci: aarch64: fix regression test
1 parent 3c32ca4 commit 87b7549

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/automation/performance/benchdnn_comparison.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def compare_two_benchdnn(file1, file2, tolerance=0.05):
7070
passed = res.pvalue > 0.05 or \
7171
((r2_med - r1_med) / r1_med < 0.1 and \
7272
(min(r2_times) - min(r1_times)) / min(r1_times) < 0.1)
73-
if passed:
73+
if not passed:
7474
failed_tests.append(prb + times_str)
7575
passed = False
7676

0 commit comments

Comments
 (0)