aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/presentation/generator_plots.py
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2020-02-21 11:02:54 +0100
committerTibor Frank <tifrank@cisco.com>2020-02-21 11:02:54 +0100
commit1d95c075ccd8b55d83fe3ae4f8e17df3b5dbd7d2 (patch)
tree17235b621550e9d2fe6678549aabbe3b6d62c609 /resources/tools/presentation/generator_plots.py
parent15a04ca1f1ac7485695ac36e33deb06968e0020a (diff)
Report: Add data
Change-Id: I5e999061f40734a3cd520199ab21d466aa8ca4bf Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/generator_plots.py')
-rw-r--r--resources/tools/presentation/generator_plots.py8
1 files changed, 5 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(