summaryrefslogtreecommitdiff
path: root/scripts/benchmark/benchmark.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/benchmark/benchmark.py')
-rw-r--r--scripts/benchmark/benchmark.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/benchmark/benchmark.py b/scripts/benchmark/benchmark.py
index 36da03a8..a5f216c6 100644
--- a/scripts/benchmark/benchmark.py
+++ b/scripts/benchmark/benchmark.py
@@ -88,7 +88,8 @@ def benchmark_single(benchmark, platform, device, num_runs, precision, load_from
# The benchmark name and plot title
benchmark_name = utils.precision_to_letter(precision) + benchmark.upper()
- plot_title = benchmark_name if plot_title is "" else benchmark_name + ": " + plot_title
+ if benchmark.upper() != "SUMMARY":
+ plot_title = benchmark_name if plot_title is "" else benchmark_name + ": " + plot_title
# Retrieves the benchmark settings
if benchmark not in EXPERIMENTS.keys():