From d8192e05fb13c57fd7ca05af6946093b51aa7d96 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Wed, 14 May 2025 16:17:01 +0200 Subject: VA: Change default to exp=1 (strong scaling) --- VA/include/params.h | 4 ++-- 1 file 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 # of untimed warmup iterations (default=1)" "\n -e # of timed repetition iterations (default=3)" - "\n -x Weak (0) or strong (1) scaling (default=0)" + "\n -x Weak (0) or strong (1) scaling (default=1)" "\n" "\nBenchmark-specific options:" "\n -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) { -- cgit v1.2.3