From 4db503a4fc166087ba67e276bd33d5c0cd32da91 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Tue, 12 Mar 2024 10:32:32 +0100 Subject: CPU-DPU: support large data transfers on >1000 DPUs (uint32 is a bit small) --- Microbenchmarks/CPU-DPU/support/common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Microbenchmarks/CPU-DPU/support') 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, -- cgit v1.2.3