From 1d95c075ccd8b55d83fe3ae4f8e17df3b5dbd7d2 Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Fri, 21 Feb 2020 11:02:54 +0100 Subject: [PATCH] Report: Add data Change-Id: I5e999061f40734a3cd520199ab21d466aa8ca4bf Signed-off-by: Tibor Frank --- resources/tools/presentation/generator_plots.py | 8 +++++--- resources/tools/presentation/specification.yaml | 9 +++++++++ 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py index 2fb4159a1f..74db877007 100644 --- a/resources/tools/presentation/generator_plots.py +++ b/resources/tools/presentation/generator_plots.py @@ -1025,6 +1025,8 @@ def plot_tsa_name(plot, input_data): limit = plot[u"limits"][u"nic"][u"xl710"] elif u"x553" in test_name: limit = plot[u"limits"][u"nic"][u"x553"] + elif u"cx556a" in test_name: + limit = plot[u"limits"][u"nic"][u"cx556a"] else: limit = 0 if limit > nic_limit: @@ -1054,7 +1056,7 @@ def plot_tsa_name(plot, input_data): except ValueError as err: logging.error(err) return - nic_limit /= 1000000.0 + nic_limit /= 1e6 traces.append(plgo.Scatter( x=x_vals, y=[nic_limit, ] * len(x_vals), @@ -1084,7 +1086,7 @@ def plot_tsa_name(plot, input_data): )) y_max.append(nic_limit) - lnk_limit /= 1000000.0 + lnk_limit /= 1e6 if lnk_limit < threshold: traces.append(plgo.Scatter( x=x_vals, @@ -1115,7 +1117,7 @@ def plot_tsa_name(plot, input_data): )) y_max.append(lnk_limit) - pci_limit /= 1000000.0 + pci_limit /= 1e6 if (pci_limit < threshold and (pci_limit < lnk_limit * 0.95 or lnk_limit > lnk_limit * 1.05)): traces.append(plgo.Scatter( diff --git a/resources/tools/presentation/specification.yaml b/resources/tools/presentation/specification.yaml index 705962976b..4a821b9b96 100644 --- a/resources/tools/presentation/specification.yaml +++ b/resources/tools/presentation/specification.yaml @@ -126,6 +126,7 @@ x710: 35800000 xxv710: 35800000 xl710: 35800000 + cx556a: 148809523 link: 10ge: 14880952.38 @@ -561,8 +562,10 @@ - 59 # NDRPDR full - 61 # NDRPDR full - 62 # NDRPDR full + - 63 # NDRPDR full - 64 # NDRPDR full - 65 # NDRPDR full + - 67 # NDRPDR full vpp-perf-results-3n-skx: # TODO: Replace @@ -577,6 +580,8 @@ vpp-perf-results-2n-clx: # TODO: Add data csit-vpp-perf-verify-2001-2n-clx: + - 34 # NDRPDR full + - 35 # NDRPDR full - 36 # NDRPDR full - 38 # NDRPDR full @@ -2022,8 +2027,10 @@ - 59 # NDRPDR full - 61 # NDRPDR full - 62 # NDRPDR full + - 63 # NDRPDR full - 64 # NDRPDR full - 65 # NDRPDR full + - 67 # NDRPDR full # csit-vpp-perf-verify-1904-3n-skx: # - 7 # MRR sel @@ -2126,6 +2133,8 @@ - 28 # NDRPDR sel - 29 # NDRPDR sel - 32 # NDRPDR sel + - 34 # NDRPDR full + - 35 # NDRPDR full - 36 # NDRPDR full - 38 # NDRPDR full -- 2.16.6