aboutsummaryrefslogtreecommitdiffstats
path: root/resources
diff options
context:
space:
mode:
authorJan Gelety <jgelety@cisco.com>2019-11-30 06:47:45 +0100
committerPeter Mikus <pmikus@cisco.com>2019-12-09 14:44:43 +0000
commit6b893681d1246f90e55b44762dd85f7d9dab1348 (patch)
treef4d0a30ead43f0fc40fab846d952839fd37e71db /resources
parent190462e1f242b59d927eff3e63826fe6343eadbc (diff)
FIX: integer divisions
Change-Id: I28caf62f418bf18601cd379603d03c307e3ba9c8 Signed-off-by: Jan Gelety <jgelety@cisco.com>
Diffstat (limited to 'resources')
-rw-r--r--resources/libraries/python/DUTSetup.py2
-rw-r--r--resources/tools/integrated/compare_perpatch.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/resources/libraries/python/DUTSetup.py b/resources/libraries/python/DUTSetup.py
index 3544997e55..1a8899f6f6 100644
--- a/resources/libraries/python/DUTSetup.py
+++ b/resources/libraries/python/DUTSetup.py
@@ -826,7 +826,7 @@ class DUTSetup:
# If we want to allocate hugepage dynamically
if allocate:
mem_needed = (mem_size * 1024) - (huge_free * huge_size)
- huge_to_allocate = ((mem_needed / huge_size) * 2) + huge_total
+ huge_to_allocate = ((mem_needed // huge_size) * 2) + huge_total
max_map_count = huge_to_allocate*4
# Increase maximum number of memory map areas a process may have
ret_code, _, _ = ssh.exec_command_sudo(
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}")