diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-11-20 11:32:41 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2023-11-20 11:32:41 +0100 |
commit | 01c6bf683d000d3cbefcbb2499ac50fbc731db22 (patch) | |
tree | 2d762b095e17d804b67c322f1a5aed87d88139ee /VA/support | |
parent | 60f221cc6cee09ce4b3e22271207e0dc18dcac9d (diff) |
VA: optionally include dpu_{alloc,load,free} overhead in benchmark output
Diffstat (limited to 'VA/support')
-rwxr-xr-x | VA/support/timer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/VA/support/timer.h b/VA/support/timer.h index 5c00213..4d597b9 100755 --- a/VA/support/timer.h +++ b/VA/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;
|