From f6111f658443c1beffb9714dff3cca8ea3116255 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Fri, 9 May 2025 15:18:55 +0200 Subject: TRNS: Add tracing and timing aspects for dfatool behaviour models --- TRNS/support/common.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'TRNS/support/common.h') diff --git a/TRNS/support/common.h b/TRNS/support/common.h index 2ba56c5..6a94c62 100755 --- a/TRNS/support/common.h +++ b/TRNS/support/common.h @@ -14,16 +14,18 @@ // Data type #define T int64_t +enum kernels { + kernel1 = 0, + kernel2 = 1, + nr_kernels = 2, +}; + // Structures used by both the host and the dpu to communicate information typedef struct { uint32_t m; uint32_t n; uint32_t M_; - enum kernels { - kernel1 = 0, - kernel2 = 1, - nr_kernels = 2, - } kernel; + enum kernels kernel; } dpu_arguments_t; #ifndef ENERGY -- cgit v1.2.3