summaryrefslogtreecommitdiff
path: root/Microbenchmarks/CPU-DPU/support
diff options
context:
space:
mode:
authorBirte Kristina Friesel <birte.friesel@uos.de>2024-03-12 10:32:32 +0100
committerBirte Kristina Friesel <birte.friesel@uos.de>2024-03-12 10:32:32 +0100
commit4db503a4fc166087ba67e276bd33d5c0cd32da91 (patch)
tree4dffab236c5f949485c148bfc0525646c617e18f /Microbenchmarks/CPU-DPU/support
parente28258f2a2da33a53faeaefa8e555c053d636628 (diff)
CPU-DPU: support large data transfers on >1000 DPUs (uint32 is a bit small)
Diffstat (limited to 'Microbenchmarks/CPU-DPU/support')
-rwxr-xr-xMicrobenchmarks/CPU-DPU/support/common.h4
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,