From 0bebc23cf55adfc6a25c0d5f4fa9061ce093e0d7 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Thu, 16 Jan 2025 08:24:34 +0100 Subject: MLP: dos2unix; indent -linux --- MLP/support/common.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'MLP/support/common.h') diff --git a/MLP/support/common.h b/MLP/support/common.h index 53b2f1c..4b5031b 100755 --- a/MLP/support/common.h +++ b/MLP/support/common.h @@ -3,21 +3,21 @@ // Structures used by both the host and the dpu to communicate information typedef struct { - uint32_t n_size; - uint32_t n_size_pad; - uint32_t nr_rows; - uint32_t max_rows; + uint32_t n_size; + uint32_t n_size_pad; + uint32_t nr_rows; + uint32_t max_rows; } dpu_arguments_t; // Specific information for each DPU struct dpu_info_t { - uint32_t rows_per_dpu; - uint32_t rows_per_dpu_pad; - uint32_t prev_rows_dpu; + uint32_t rows_per_dpu; + uint32_t rows_per_dpu_pad; + uint32_t prev_rows_dpu; }; struct dpu_info_t *dpu_info; -#define NUM_LAYERS 3 +#define NUM_LAYERS 3 #define max(x, y) (x > y ? x : y) #define min(x, y) (x < y ? x : y) -- cgit v1.2.3