aboutsummaryrefslogtreecommitdiff
path: root/compute-variability.py
diff options
context:
space:
mode:
authorLaurent Alfonsi <laurent.alfonsi@linaro.org>2023-10-18 09:02:01 +0200
committerLaurent Alfonsi <laurent.alfonsi@linaro.org>2023-11-14 15:33:00 +0000
commitf5a8e856c652b5050fe6d5183cdba741c8b5f353 (patch)
tree5c95f78e72814337c6997b9a79964bb55e3cc198 /compute-variability.py
parent83a58b543550f25e4cdf6463e01139cdaa322d09 (diff)
compute-variability.py: no need anymore to handle 888888888 and 999999999 magic numbers
Change-Id: Ie7f1d2f4c0390f5679d9c65ac13288e66a208be2
Diffstat (limited to 'compute-variability.py')
-rwxr-xr-xcompute-variability.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/compute-variability.py b/compute-variability.py
index 3a8ff2e..a8c52f4 100755
--- a/compute-variability.py
+++ b/compute-variability.py
@@ -83,8 +83,6 @@ def compute_variation_average(metric):
# When a failed, do not consider as a result
compare_df=compare_df.replace(-1, math.nan)
- compare_df=compare_df.replace(888888888, math.nan)
- compare_df=compare_df.replace(999999999, math.nan)
# Group line ['benchmark', 'symbol'] together, It can happen if many vectors are run.
# During this sum, we want NaN to be considered as real NaN. Because one of the run can be failing (888888888)