aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/integrated
diff options
context:
space:
mode:
Diffstat (limited to 'resources/tools/integrated')
-rw-r--r--resources/tools/integrated/compare_perpatch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/tools/integrated/compare_perpatch.py b/resources/tools/integrated/compare_perpatch.py
index dd15490506..72ae5751d3 100644
--- a/resources/tools/integrated/compare_perpatch.py
+++ b/resources/tools/integrated/compare_perpatch.py
@@ -39,7 +39,7 @@ def hack(value_list):
:rtype: list of float
"""
tmp = sorted(value_list)
- eight = len(tmp) / 8
+ eight = len(tmp) // 8
ret = tmp[3*eight:-eight]
return tmp # ret
@@ -100,7 +100,7 @@ for test_index in range(num_tests):
[current_stats])
print(f"Value-ordered MRR values for parent build: {parent_values}")
print(f"Value-ordered MRR values for current build: {current_values}")
- avg_diff = (current_stats.avg - parent_stats.avg) / parent_stats.avg
+ avg_diff = (current_stats.avg - parent_stats.avg) // parent_stats.avg
print(f"Difference of averages relative to parent: {100 * avg_diff}%")
print(f"Jumpavg representation of parent group: {parent_stats}")
print(f"Jumpavg representation of current group: {current_stats}")