From 828846895c8ed472cceea35b66fff53aa63984d6 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Fri, 23 May 2025 15:13:59 +0200 Subject: RED: add AspectC++ support --- RED/include/params.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'RED/include/params.h') 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 # 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=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) { -- cgit v1.2.3