From 010cb6e8804332bf9dade8e64562f6861e0333ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jesper=20=C3=96qvist?= Date: Fri, 13 May 2016 10:21:44 -0700 Subject: [PATCH] Fix error in help output for benchmark script fixes #12 --- utility/rbench.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utility/rbench.py b/utility/rbench.py index 68a0a14..4f2820d 100755 --- a/utility/rbench.py +++ b/utility/rbench.py @@ -54,7 +54,7 @@ def parse_args(rvms, warmup_rep, bench_rep): perf: Linux perf, only available on Linux platform; system.time: measure the time use R system.time() (Inside R process)''') parser.add_argument('--rvm', choices=rvms, default=rvms[0], - help='R VM used for the benchmark. Defined in rbench.cfg. Default is '+rvms[1]) + help='R VM used for the benchmark. Defined in rbench.cfg. Default is '+rvms[0]) parser.add_argument('--warmup_rep', default=warmup_rep, type=int, help='The number of repetition to execute run() in warmup. Default is %d' % warmup_rep) parser.add_argument('--bench_rep', default=bench_rep, type=int,