diff options
Diffstat (limited to 'VA/host/app.c')
-rw-r--r-- | VA/host/app.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/VA/host/app.c b/VA/host/app.c index 697731b..04f1971 100644 --- a/VA/host/app.c +++ b/VA/host/app.c @@ -47,7 +47,6 @@ static T *B; static T *C; static T *C2; -struct Params p; unsigned int kernel; // Create input arrays @@ -72,7 +71,7 @@ static void vector_addition_host(T *C, T *A, T *B, unsigned long int nr_elements int main(int argc, char **argv) { - p = input_params(argc, argv); + struct Params p = input_params(argc, argv); struct dpu_set_t dpu_set, dpu; uint32_t nr_of_dpus; |