summaryrefslogtreecommitdiff
path: root/SEL/support/timer.h
diff options
context:
space:
mode:
authorBirte Kristina Friesel <birte.friesel@uos.de>2024-07-03 16:22:46 +0200
committerBirte Kristina Friesel <birte.friesel@uos.de>2024-07-03 16:22:46 +0200
commit671fdd67eb5fab31861a5bb1b51dc87ed4fcfcd7 (patch)
tree687a24ea07f0051f11d2efd352b0eaa30ea99b07 /SEL/support/timer.h
parent62bfa008bc1d2aa5f8d29f219717729de2f5af4b (diff)
SEL: Add a variant that does not rely on serial reads from all DPUs
~10x speedup on 10 ranks
Diffstat (limited to 'SEL/support/timer.h')
-rwxr-xr-xSEL/support/timer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/SEL/support/timer.h b/SEL/support/timer.h
index 3e826f0..3ec6d87 100755
--- a/SEL/support/timer.h
+++ b/SEL/support/timer.h
@@ -37,9 +37,9 @@
typedef struct Timer{
- struct timeval startTime[8];
- struct timeval stopTime[8];
- double time[8];
+ struct timeval startTime[9];
+ struct timeval stopTime[9];
+ double time[9];
}Timer;