From bf05994fbf8308bb2482c494a2b28949837fcc6f Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Tue, 3 Sep 2019 08:45:31 +0200 Subject: CSIT-1590: Performance comparison analysis Change-Id: I09d502fcd7b286e41b141e43933bcf09262a8749 Signed-off-by: Tibor Frank (cherry picked from commit 3e5dbfab796da168865ba787382224b1b04b83a4) --- resources/tools/presentation/generator_tables.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'resources/tools/presentation/generator_tables.py') diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index ffb4f1a40d..c26675e7dd 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -657,10 +657,12 @@ def table_performance_comparison_nic(table, input_data): item.append(round(stdev(data_t) / 1000000, 2)) else: item.extend([None, None]) - if item[-4] is not None and item[-2] is not None and item[-4] != 0: + if "dot1q" in tbl_dict[tst_name]["name"]: + item.append("Changed methodology") + elif item[-4] is not None and item[-2] is not None and item[-4] != 0: item.append(int(relative_change(float(item[-4]), float(item[-2])))) else: - item.append(None) + item.append("n/a") if len(item) == len(header): tbl_lst.append(item) -- cgit 1.2.3-korg