aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2024-10-22 13:09:25 +0000
committerTibor Frank <tifrank@cisco.com>2024-10-22 13:09:25 +0000
commit120716e561c1d0e3c7d06cbb96d1f70cf3949e5c (patch)
treeaf5bc0cb96501a7e714bc7ecb08b2f71f8f47df4
parentf95f0a19ba4246731a9d055578892520dab41204 (diff)
C-Dash: Use Gbps in comparison tabels
... instead of Mbps Change-Id: I929eba26797022c86e931ed4f1f7ebe6d8275e48 Signed-off-by: Tibor Frank <tifrank@cisco.com>
-rw-r--r--csit.infra.dash/app/cdash/comparisons/tables.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/csit.infra.dash/app/cdash/comparisons/tables.py b/csit.infra.dash/app/cdash/comparisons/tables.py
index fa92f3da7f..208dea3dc8 100644
--- a/csit.infra.dash/app/cdash/comparisons/tables.py
+++ b/csit.infra.dash/app/cdash/comparisons/tables.py
@@ -276,11 +276,6 @@ def comparison_table(
if r_data.empty or c_data.empty:
return str(), pd.DataFrame()
- if format == "html" and "Latency" not in r_sel["ttype"]:
- unit_factor, s_unit_factor = (1e6, "M")
- else:
- unit_factor, s_unit_factor = (1, str())
-
# Create Table title and titles of columns with data
params = list(r_sel)
params.remove(c_params["parameter"])
@@ -321,6 +316,13 @@ def comparison_table(
c_std = c_row["stdev"].values[0]
if r_mean == 0.0 or c_mean == 0.0:
continue
+ if format == "html" and "Latency" not in r_sel["ttype"]:
+ if row["unit"] == "bps":
+ unit_factor, s_unit_factor = (1e9, "G")
+ else:
+ unit_factor, s_unit_factor = (1e6, "M")
+ else:
+ unit_factor, s_unit_factor = (1, str())
unit.add(f"{s_unit_factor}{row['unit']}")
l_name.append(row["name"])
l_r_mean.append(r_mean / unit_factor)