aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2019-09-03 20:26:25 +0000
committerTibor Frank <tifrank@cisco.com>2019-09-03 20:36:25 +0000
commit9096fb4943b444241b4c1d087f5359bb3f2d7e68 (patch)
tree4ae185c3520868eb3d49006a83e764a2360e7796
parent2ccb6a33185c427a73970c4bc8de4ca65c11a295 (diff)
Report: Comparison tables
Change-Id: I108e1292c5de8024060c220b877b668b8843c68f Signed-off-by: Tibor Frank <tifrank@cisco.com> (cherry picked from commit 6a5bc78e5fca4f43619c9199ef05ecbe2bc5d356)
-rw-r--r--resources/tools/presentation/generator_tables.py24
1 files changed, 14 insertions, 10 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py
index a950fbed63..af9818983b 100644
--- a/resources/tools/presentation/generator_tables.py
+++ b/resources/tools/presentation/generator_tables.py
@@ -411,13 +411,15 @@ def table_performance_comparison(table, input_data):
item.append(round(stdev(data_t) / 1000000, 2))
else:
item.extend(["Not tested", "Not tested"])
- if item[-4] != "Not tested" and item[-2] != "Not tested" and item[-4] != 0:
- item.append(int(relative_change(float(item[-4]), float(item[-2]))))
+ if item[-2] == "Not tested":
+ pass
elif item[-4] == "Not tested":
item.append("New in CSIT-1908")
elif topo == "2n-skx" and "dot1q" in tbl_dict[tst_name]["name"]:
item.append("See footnote [1]")
footnote = True
+ elif item[-4] != 0:
+ item.append(int(relative_change(float(item[-4]), float(item[-2]))))
if (len(item) == len(header)) and (item[-3] != "Not tested"):
tbl_lst.append(item)
@@ -437,13 +439,13 @@ def table_performance_comparison(table, input_data):
if footnote:
with open(txt_file_name, 'a') as txt_file:
txt_file.writelines([
- "Footnotes:",
+ "\nFootnotes:\n",
"[1] CSIT-1908 changed test methodology of dot1q tests in "
"2n-skx testbeds, dot1q encapsulation is now used on both "
- "links of SUT.",
+ "links of SUT.\n",
" Previously dot1q was used only on a single link with the "
"other link carrying untagged Ethernet frames. This change "
- "results",
+ "results\n",
" in slightly lower throughput in CSIT-1908 for these "
"tests. See release notes."
])
@@ -679,13 +681,15 @@ def table_performance_comparison_nic(table, input_data):
item.append(round(stdev(data_t) / 1000000, 2))
else:
item.extend(["Not tested", "Not tested"])
- if item[-4] != "Not tested" and item[-2] != "Not tested" and item[-4] != 0:
- item.append(int(relative_change(float(item[-4]), float(item[-2]))))
+ if item[-2] == "Not tested":
+ pass
elif item[-4] == "Not tested":
item.append("New in CSIT-1908")
elif topo == "2n-skx" and "dot1q" in tbl_dict[tst_name]["name"]:
item.append("See footnote [1]")
footnote = True
+ elif item[-4] != 0:
+ item.append(int(relative_change(float(item[-4]), float(item[-2]))))
if (len(item) == len(header)) and (item[-3] != "Not tested"):
tbl_lst.append(item)
@@ -705,13 +709,13 @@ def table_performance_comparison_nic(table, input_data):
if footnote:
with open(txt_file_name, 'a') as txt_file:
txt_file.writelines([
- "Footnotes:",
+ "\nFootnotes:\n",
"[1] CSIT-1908 changed test methodology of dot1q tests in "
"2n-skx testbeds, dot1q encapsulation is now used on both "
- "links of SUT.",
+ "links of SUT.\n",
" Previously dot1q was used only on a single link with the "
"other link carrying untagged Ethernet frames. This change "
- "results",
+ "results\n",
" in slightly lower throughput in CSIT-1908 for these "
"tests. See release notes."
])