From fd8c19a9c17c42a13b79e395691714d2a68f2c65 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Tue, 21 Nov 2023 10:24:02 +0100 Subject: GEMV: Add alloc/load/free measurements and fix a memory leak while at it --- GEMV/support/timer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'GEMV/support') diff --git a/GEMV/support/timer.h b/GEMV/support/timer.h index dab58ca..dbd21bb 100755 --- a/GEMV/support/timer.h +++ b/GEMV/support/timer.h @@ -37,9 +37,9 @@ typedef struct Timer{ - struct timeval startTime[4]; - struct timeval stopTime[4]; - double time[4]; + struct timeval startTime[7]; + struct timeval stopTime[7]; + double time[7]; }Timer; -- cgit v1.2.3