aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/presentation/generator_plots.py
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2018-08-02 10:03:43 +0200
committerTibor Frank <tifrank@cisco.com>2018-08-02 12:26:07 +0000
commitb0070d660d1c105cbc036a60c28f4cbed7266b5a (patch)
tree4506edcf36ab3de7c6b36f57a0e633668df51d45 /resources/tools/presentation/generator_plots.py
parent886fe3fae49c26bc64b64239c32bcb920ed78961 (diff)
FIX: Report TSA
Change-Id: Ieb29a1e213a5f8aa74054da57ceb15925fe4dee3 Signed-off-by: Tibor Frank <tifrank@cisco.com> (cherry picked from commit e59007133ffb0a6f38badf11fcb5d9cd2dc8da25)
Diffstat (limited to 'resources/tools/presentation/generator_plots.py')
-rw-r--r--resources/tools/presentation/generator_plots.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py
index a90dd0a9c5..a6b255eed2 100644
--- a/resources/tools/presentation/generator_plots.py
+++ b/resources/tools/presentation/generator_plots.py
@@ -287,13 +287,13 @@ def plot_throughput_speedup_analysis(plot, input_data):
ttype = "NDR"
else:
continue
- if "1T1C" in test["tags"]:
+ if "1C" in test["tags"]:
throughput[test["parent"]]["1"].\
append(test["throughput"][ttype]["LOWER"])
- elif "2T2C" in test["tags"]:
+ elif "2C" in test["tags"]:
throughput[test["parent"]]["2"]. \
append(test["throughput"][ttype]["LOWER"])
- elif "4T4C" in test["tags"]:
+ elif "4C" in test["tags"]:
throughput[test["parent"]]["4"]. \
append(test["throughput"][ttype]["LOWER"])
except (KeyError, TypeError):