diff options
author | Tibor Frank <tifrank@cisco.com> | 2018-11-28 08:06:15 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2018-11-28 07:11:41 +0000 |
commit | 0665bfc00c9aba91f34195a3c535d104ae973239 (patch) | |
tree | bbf8e68b069b00e9300acba7ce44ad6b82d83fae | |
parent | 9b177db6180999fcc2913726c4c0e3adb0724a1e (diff) |
Report: Set NIC limit for x553
Change-Id: Ibe85ed844501504085065631b393d2746227ea72
Signed-off-by: Tibor Frank <tifrank@cisco.com>
(cherry picked from commit 670a905fcf26395e2064aab79449fe582eec5853)
-rw-r--r-- | resources/tools/presentation/generator_plots.py | 2 | ||||
-rw-r--r-- | resources/tools/presentation/specification.yaml | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py index 004e65e63b..32f146bca8 100644 --- a/resources/tools/presentation/generator_plots.py +++ b/resources/tools/presentation/generator_plots.py @@ -546,6 +546,8 @@ def plot_throughput_speedup_analysis(plot, input_data): limit = plot["limits"]["nic"]["xxv710"] elif "xl710" in test_name: limit = plot["limits"]["nic"]["xl710"] + elif "x553" in test_name: + limit = plot["limits"]["nic"]["x553"] else: limit = 0 if limit > nic_limit: diff --git a/resources/tools/presentation/specification.yaml b/resources/tools/presentation/specification.yaml index ea8cb5c777..12892dcdb0 100644 --- a/resources/tools/presentation/specification.yaml +++ b/resources/tools/presentation/specification.yaml @@ -109,6 +109,7 @@ limits: nic: x520: 24460000 + x553: 29600000 x710: 35800000 xxv710: 35800000 xl710: 35800000 |