diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-03-12 10:32:32 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-03-12 10:32:32 +0100 |
commit | 4db503a4fc166087ba67e276bd33d5c0cd32da91 (patch) | |
tree | 4dffab236c5f949485c148bfc0525646c617e18f /Microbenchmarks/CPU-DPU/support/common.h | |
parent | e28258f2a2da33a53faeaefa8e555c053d636628 (diff) |
CPU-DPU: support large data transfers on >1000 DPUs (uint32 is a bit small)
Diffstat (limited to 'Microbenchmarks/CPU-DPU/support/common.h')
-rwxr-xr-x | Microbenchmarks/CPU-DPU/support/common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Microbenchmarks/CPU-DPU/support/common.h b/Microbenchmarks/CPU-DPU/support/common.h index 3c3c6ae..df8c03c 100755 --- a/Microbenchmarks/CPU-DPU/support/common.h +++ b/Microbenchmarks/CPU-DPU/support/common.h @@ -1,9 +1,9 @@ #ifndef _COMMON_H_ #define _COMMON_H_ -// Structures used by both the host and the dpu to communicate information +// Structures used by both the host and the dpu to communicate information typedef struct { - uint32_t size; + uint64_t size; enum kernels { kernel1 = 0, nr_kernels = 1, |