diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-05-13 07:56:20 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-05-13 07:56:20 +0200 |
commit | a97a539c06a509906802450f28340922ea50c16f (patch) | |
tree | 36e9aa83ad13fd5aa425a0843a02dd97bd9ff535 /VA/support/params.h | |
parent | 8a1cf3ddba768597f222adb777023a3fd8a0ec4c (diff) |
VA: AspectC++ support
Diffstat (limited to 'VA/support/params.h')
-rw-r--r-- | VA/support/params.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/VA/support/params.h b/VA/support/params.h index 47c10ef..4f41adc 100644 --- a/VA/support/params.h +++ b/VA/support/params.h @@ -4,7 +4,7 @@ #include "common.h" typedef struct Params { - unsigned int input_size; + unsigned long int input_size; int n_warmup; int n_reps; int exp; @@ -41,7 +41,7 @@ struct Params input_params(int argc, char **argv) exit(0); break; case 'i': - p.input_size = atoi(optarg); + p.input_size = atol(optarg); break; case 'w': p.n_warmup = atoi(optarg); |