diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-11-21 10:24:02 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-11-21 10:24:02 +0100 |
commit | fd8c19a9c17c42a13b79e395691714d2a68f2c65 (patch) | |
tree | 20e506854aee633ee8b1cfdf3662545e3070111a /GEMV/support | |
parent | 0b6e066ae9a4dfc7ec18c1ec3794001c79cb2415 (diff) |
GEMV: Add alloc/load/free measurements and fix a memory leak while at it
Diffstat (limited to 'GEMV/support')
-rwxr-xr-x | GEMV/support/timer.h | 6 |
1 files changed, 3 insertions, 3 deletions
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;
|