From 2dfe7c5c2349f97f26b85ed7830039b824757a8a Mon Sep 17 00:00:00 2001 From: Witold Baryluk Date: Sun, 4 Oct 2020 08:17:16 +0000 Subject: Fix --load_from_disk argument help message --- scripts/benchmark/benchmark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/benchmark/benchmark.py b/scripts/benchmark/benchmark.py index 0bb37c10..53e30cc8 100644 --- a/scripts/benchmark/benchmark.py +++ b/scripts/benchmark/benchmark.py @@ -83,7 +83,7 @@ def parse_arguments(argv): parser.add_argument("-d", "--device", required=True, type=int, help="The ID of the OpenCL device to test on") parser.add_argument("-n", "--num_runs", type=int, default=None, help="Overrides the default number of benchmark repeats for averaging") parser.add_argument("-x", "--precision", type=int, default=32, help="The precision to test for (choose from 16, 32, 64, 3232, 6464") - parser.add_argument("-l", "--load_from_disk", action="store_true", help="Increase verbosity of the script") + parser.add_argument("-l", "--load_from_disk", action="store_true", help="Loading existing results from JSON file and replot") parser.add_argument("-t", "--plot_title", default="", help="The title for the plots, defaults to benchmark name") parser.add_argument("-z", "--tight_plot", action="store_true", help="Enables tight plot layout for in paper or presentation") parser.add_argument("-o", "--output_folder", default=os.getcwd(), help="Sets the folder for output plots (defaults to current folder)") -- cgit v1.2.3