diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2025-05-14 16:17:01 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2025-05-14 16:17:01 +0200 |
commit | d8192e05fb13c57fd7ca05af6946093b51aa7d96 (patch) | |
tree | 5b7693969a56f69b65a1f62f4f31e3954d7ff925 | |
parent | 49767d1eb006b0682142aefea566d0febbeb37cb (diff) |
VA: Change default to exp=1 (strong scaling)
-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) { |