From 9e4c72249dc36428ec94cb6c0036377cb3cfc93c Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Fri, 26 Jun 2020 08:52:46 +0200 Subject: Report 2005: Add data, fix sorting in comp tables Change-Id: Ib0c42f5b9fbd9b9f9ebf0bff437ef9d145e6ddda Signed-off-by: Tibor Frank (cherry picked from commit f278b55927de4aa59cf87ac1e752effd1c64035c) --- resources/tools/presentation/generator_tables.py | 15 +++++++-------- resources/tools/presentation/specification.yaml | 4 ++++ 2 files changed, 11 insertions(+), 8 deletions(-) (limited to 'resources/tools/presentation') diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index 79789b5b75..4299efdb82 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -1602,7 +1602,6 @@ def table_comparison(table, input_data): if comparisons: for row in tbl_lst: new_row = deepcopy(row) - add_to_tbl = False for comp in comparisons: ref_itm = row[int(comp[u"reference"])] if ref_itm is None and \ @@ -1618,16 +1617,16 @@ def table_comparison(table, input_data): ref_itm[u"mean"], cmp_itm[u"mean"], ref_itm[u"stdev"], cmp_itm[u"stdev"] ) - new_row.append( - { + if delta is None: + break + else: + new_row.append({ u"mean": delta * 1e6, u"stdev": d_stdev * 1e6 - } - ) - add_to_tbl = True + }) else: - new_row.append(None) - if add_to_tbl: + break + else: tbl_cmp_lst.append(new_row) try: diff --git a/resources/tools/presentation/specification.yaml b/resources/tools/presentation/specification.yaml index 66f2035d14..a6ff3b0547 100644 --- a/resources/tools/presentation/specification.yaml +++ b/resources/tools/presentation/specification.yaml @@ -901,7 +901,9 @@ - 62 # NDRPDR sel env 4 - 63 # NDRPDR sel env 4 - 64 # NDRPDR sel env 4 + - 65 # NDRPDR sel env 4 - 66 # NDRPDR sel env 4 + - 70 # NDRPDR sel env 4 vpp-performance-changes-2n-dnv-h1: csit-vpp-perf-verify-1908-2n-dnv: @@ -2408,7 +2410,9 @@ - 62 # NDRPDR sel env 4 - 63 # NDRPDR sel env 4 - 64 # NDRPDR sel env 4 + - 65 # NDRPDR sel env 4 - 66 # NDRPDR sel env 4 + - 70 # NDRPDR sel env 4 - 12 # MRR - 42 # Reconf - 45 # Reconf -- cgit 1.2.3-korg