From cc9ad7b33b30f25f46b5091eaceea9994610f8e7 Mon Sep 17 00:00:00 2001 From: Cedric Nugteren Date: Fri, 21 Apr 2017 21:34:44 +0200 Subject: Removed the words SUMMARY from the title of the benchmark script when benchmarking the summary --- scripts/benchmark/benchmark.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'scripts/benchmark') 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(): -- cgit v1.2.3