diff options
Diffstat (limited to 'VA/include/params.h')
-rw-r--r-- | VA/include/params.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/VA/include/params.h b/VA/include/params.h index 4f41adc..31327d8 100644 --- a/VA/include/params.h +++ b/VA/include/params.h @@ -19,7 +19,7 @@ static void usage() "\n -h help" "\n -w <W> # of untimed warmup iterations (default=1)" "\n -e <E> # of timed repetition iterations (default=3)" - "\n -x <X> Weak (0) or strong (1) scaling (default=0)" + "\n -x <X> Weak (0) or strong (1) scaling (default=1)" "\n" "\nBenchmark-specific options:" "\n -i <I> input size (default=2621440 elements)" "\n"); @@ -31,7 +31,7 @@ struct Params input_params(int argc, char **argv) p.input_size = 2621440; p.n_warmup = 1; p.n_reps = 3; - p.exp = 0; + p.exp = 1; int opt; while ((opt = getopt(argc, argv, "hi:w:e:x:")) >= 0) { |