aboutsummaryrefslogtreecommitdiffstats
path: root/resources
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2018-01-27 05:19:45 +0100
committerTibor Frank <tifrank@cisco.com>2018-01-27 04:20:46 +0000
commit1a0721ea5349d31b465a53a06a40d6fcab011064 (patch)
tree03c5ab37ef23755d2f9f0adf25d029466faa6bab /resources
parent8d3d890c25a9bdf852cb7e4ae0156815663655c1 (diff)
Report: Source data
Change-Id: I45ea394bed08a57c519654e5ab6b0aba73f17088 Signed-off-by: Tibor Frank <tifrank@cisco.com> (cherry picked from commit 97e479f0aaf5fd0ca3f72eb36ba822c0e94eb42c)
Diffstat (limited to 'resources')
-rw-r--r--resources/tools/presentation/generator_tables.py17
1 files changed, 16 insertions, 1 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py
index 4b1da90068..46d2287baa 100644
--- a/resources/tools/presentation/generator_tables.py
+++ b/resources/tools/presentation/generator_tables.py
@@ -20,6 +20,7 @@ import csv
import prettytable
from string import replace
+from pprint import pformat
from errors import PresentationError
from utils import mean, stdev, relative_change
@@ -345,8 +346,12 @@ def table_performance_comparison(table, input_data):
:type input_data: InputData
"""
+ logging.info(" Generating the table {0} ...".
+ format(table.get("title", "")))
+
# Transform the data
data = input_data.filter_data(table)
+ logging.info(data)
# Prepare the header of the tables
try:
@@ -377,8 +382,9 @@ def table_performance_comparison(table, input_data):
try:
tbl_dict[tst_name]["ref-data"].\
append(tst_data["throughput"]["value"])
- except TypeError as err:
+ except TypeError:
pass # No data in output.xml for this test
+ logging.info(pformat(tbl_dict))
for job, builds in table["compare"]["data"].items():
for build in builds:
@@ -391,6 +397,8 @@ def table_performance_comparison(table, input_data):
except TypeError:
tbl_dict.pop(tst_name, None)
+ logging.info(pformat(tbl_dict))
+
tbl_lst = list()
for tst_name in tbl_dict.keys():
item = [tbl_dict[tst_name]["name"], ]
@@ -415,6 +423,7 @@ def table_performance_comparison(table, input_data):
# Sort the table according to the relative change
tbl_lst.sort(key=lambda rel: rel[-1], reverse=True)
+ logging.info(pformat(tbl_lst))
# Generate tables:
# All tests in csv:
@@ -432,6 +441,7 @@ def table_performance_comparison(table, input_data):
table["output-file-ext"])
]
for file_name in tbl_names:
+ logging.info(" Writing file: '{}'".format(file_name))
with open(file_name, "w") as file_handler:
file_handler.write(header_str)
for test in tbl_lst:
@@ -452,6 +462,7 @@ def table_performance_comparison(table, input_data):
for i, txt_name in enumerate(tbl_names_txt):
txt_table = None
+ logging.info(" Writing file: '{}'".format(txt_name))
with open(tbl_names[i], 'rb') as csv_file:
csv_content = csv.reader(csv_file, delimiter=',', quotechar='"')
for row in csv_content:
@@ -472,6 +483,7 @@ def table_performance_comparison(table, input_data):
output_file = "{0}-ndr-1t1c-top{1}".format(table["output-file"],
table["output-file-ext"])
+ logging.info(" Writing file: '{}'".format(output_file))
with open(output_file, "w") as out_file:
out_file.write(header_str)
for i, line in enumerate(lines[1:]):
@@ -481,6 +493,7 @@ def table_performance_comparison(table, input_data):
output_file = "{0}-ndr-1t1c-bottom{1}".format(table["output-file"],
table["output-file-ext"])
+ logging.info(" Writing file: '{}'".format(output_file))
with open(output_file, "w") as out_file:
out_file.write(header_str)
for i, line in enumerate(lines[-1:0:-1]):
@@ -497,6 +510,7 @@ def table_performance_comparison(table, input_data):
output_file = "{0}-pdr-1t1c-top{1}".format(table["output-file"],
table["output-file-ext"])
+ logging.info(" Writing file: '{}'".format(output_file))
with open(output_file, "w") as out_file:
out_file.write(header_str)
for i, line in enumerate(lines[1:]):
@@ -506,6 +520,7 @@ def table_performance_comparison(table, input_data):
output_file = "{0}-pdr-1t1c-bottom{1}".format(table["output-file"],
table["output-file-ext"])
+ logging.info(" Writing file: '{}'".format(output_file))
with open(output_file, "w") as out_file:
out_file.write(header_str)
for i, line in enumerate(lines[-1:0:-1]):