Ian Jauslin
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Jauslin <ian.jauslin@rutgers.edu>2023-04-25 16:38:25 -0400
committerIan Jauslin <ian.jauslin@rutgers.edu>2023-04-25 16:58:45 -0400
commit519bb7272661ae4fb81a9c4851133cd8e7da1805 (patch)
tree36ad3355e180efc4f4c2a1daa49362b15982957c /src/statistics.c
parentb35be9ea88dd3d28710f213afb3f63b7748ce5a6 (diff)
running average in statistics file
Diffstat (limited to 'src/statistics.c')
-rw-r--r--src/statistics.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/statistics.c b/src/statistics.c
new file mode 100644
index 0000000..a35d1e2
--- /dev/null
+++ b/src/statistics.c
@@ -0,0 +1,28 @@
+#include "statistics.h"
+
+// run this at each step to compute the running average
+double average_step(
+ // the value at the step
+ double val,
+ // the average computed so far
+ double avg,
+ uint64_t t,
+ uint64_t starting_time,
+ uint64_t print_freq,
+ uint64_t first_box
+){
+
+ // running average
+ // reset averages
+ if(t % print_freq == 1){
+ return(0);
+ }
+
+ // compute average
+ // different computationin first box if starting_time is not a multiple of print_freq
+ if(t < starting_time + first_box){
+ return(avg+val/first_box);
+ } else {
+ return(avg+val/print_freq);
+ }
+}