diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-08-15 14:40:25 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-08-15 14:40:25 +0200 |
commit | a1f6d4ca0216bcd983ab8d10f035d5a9a0b35def (patch) | |
tree | a379a1bf6dba92eadefd438e136a30055f497e13 /GEMV/support | |
parent | 5b26042cbcfe4328ab98a9b9cf3cb562b4139e64 (diff) |
GEMV: measure each write (dpu_push_xfer call) separately
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 dbd21bb..99d79f4 100755 --- a/GEMV/support/timer.h +++ b/GEMV/support/timer.h @@ -37,9 +37,9 @@ typedef struct Timer{
- struct timeval startTime[7];
- struct timeval stopTime[7];
- double time[7];
+ struct timeval startTime[9];
+ struct timeval stopTime[9];
+ double time[9];
}Timer;
|