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 14:21:39 +0200
commite59007133ffb0a6f38badf11fcb5d9cd2dc8da25 (patch)
treea98801e20cd573243e21854bc701cf91624d0a40 /resources/tools/presentation/generator_plots.py
parent1e000ed7785445d96588ab302b154c563d5d9331 (diff)
FIX: Report TSA
Change-Id: Ieb29a1e213a5f8aa74054da57ceb15925fe4dee3 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.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):