diff options
Diffstat (limited to 'RED/include/params.h')
-rw-r--r-- | RED/include/params.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/RED/include/params.h b/RED/include/params.h index 97bc50a..ee90908 100644 --- a/RED/include/params.h +++ b/RED/include/params.h @@ -18,7 +18,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=6553600 elements)" @@ -30,7 +30,7 @@ struct Params input_params(int argc, char **argv) { p.input_size = 6553600; 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) { |