diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2025-05-13 15:39:00 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2025-05-13 15:39:00 +0200 |
commit | 5f8f20540a69713921b0f49ae9d28b5f56943b34 (patch) | |
tree | 5428de1b74dda9363a2cc95be96c7a228562c0ce /VA/host/app.c | |
parent | 51829cc3c1f7a237b9f344c134985ac67926d020 (diff) |
TRNS, VA: global params are not required
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; |