summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorWitold Baryluk <witold.baryluk+github@gmail.com>2020-10-04 08:17:16 +0000
committerGitHub <noreply@github.com>2020-10-04 08:17:16 +0000
commit2dfe7c5c2349f97f26b85ed7830039b824757a8a (patch)
tree95f46cbf4c8c44393fd92ab643773d821bde79e3 /scripts
parent46fb748a96153b419f25218f8fd9a38a30becf24 (diff)
Fix --load_from_disk argument help message
Diffstat (limited to 'scripts')
-rw-r--r--scripts/benchmark/benchmark.py2
1 files changed, 1 insertions, 1 deletions
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)")