diff options
Diffstat (limited to 'resources/tools/presentation/generator_plots.py')
-rw-r--r-- | resources/tools/presentation/generator_plots.py | 6 |
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): |