aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/timestat.cc
blob: 1115a66635d586d4af01f237a0b01047275005c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
#include <algorithm>
#include <cassert>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <fstream>
#include <iomanip>
#include <iostream>
#include <limits>
#include <sstream>

#include <sys/time.h>
#include <unistd.h>

#include <mpi.h>

#include "cctk.h"
#include "cctk_Arguments.h"
#include "cctk_Parameters.h"

#include "defs.hh"
#include "dist.hh"
#include "timestat.hh"



namespace CarpetLib {
  
  using namespace std;
  
  
  
  static
  bool have_cputick = false;
  
  // CPU tick time in seconts
  static
  double cputick = 0.0;
  
  static
  void
  calculate_cputick ()
  {
    // Make a few warm-up measurements
    getticks ();
    getticks ();
    getticks ();
    
#if 0
    // Use usleep to calibrate the timer
    for (int i=0; i<10; ++i) {
      useconds_t const waittime = 1000 * 1000;
      ticks const rstart = getticks ();
      int const ierr = usleep (waittime);
      ticks const rend = getticks ();
      cputick = waittime / 1.0e6 / elapsed (rend, rstart);
      if (not ierr) goto done;
    }
    CCTK_WARN (1, "Could not determine timer resolution");
  done:;
#endif
    
#if 1
    // Use MPI_Wtime to calibrate the timer
    ticks const rstart = getticks ();
    double const wstart = MPI_Wtime ();
    while (MPI_Wtime() < wstart + 1.0) {
      // do nothing, just wait
    }
    ticks const rend = getticks ();
    double const wend = MPI_Wtime ();
    cputick = (wend - wstart) / elapsed (rend, rstart);
#endif
    
    have_cputick = true;
  }
  
  
  
  // Call a timer
  static
  ticks
  call_timer ()
  {
    return getticks();
  }
  
  
  
  // A global timer set
  static
  TimerSet timerSet;
  
  
  
  // Add a timer
  void
  TimerSet::add (Timer * const timer)
  {
    timers.push_back (timer);
  }
  
  
  
  // Remove a timer
  void
  TimerSet::remove (Timer * const timer)
  {
    timers.remove (timer);
  }
  
  
  
  // Output all timer names
  void
  TimerSet::outputNames (ostream & os)
    const
  {
    os << "Timer names:" << eol;
    int n = 0;
    for (list <Timer *>::const_iterator
           itimer = timers.begin(); itimer != timers.end(); ++ itimer)
    {
      os << "   [" << setw (4) << setfill ('0') << n << "] "
         << (* itimer)->name() << eol;
      ++ n;
    }
  }
  
  
  
  // Output all timer data
  void
  TimerSet::outputData (ostream & os)
    const
  {
    for (list <Timer *>::const_iterator
           itimer = timers.begin(); itimer != timers.end(); ++ itimer)
    {
      os << * (* itimer);
    }
  }
  
  
  
  // Create a new timer with the given name
  Timer::Timer (char const * const timername_)
    : timername (timername_)
  {
    assert (timername_);
    if (not have_cputick) calculate_cputick ();
    resetstats ();
    timerSet.add (this);
  }
  
  
  
  // Destroy a timer
  Timer::~Timer ()
  {
    timerSet.remove (this);
  }
  
  
  
  // Reset the statistics
  void
  Timer::resetstats ()
  {
    wtime  = 0.0;
    wtime2 = 0.0;
    wmin   = 0.0;
    wmax   = 0.0;
    
    bytes  = 0.0;
    bytes2 = 0.0;
    bmin   = 0.0;
    bmax   = 0.0;
    
    count  = 0.0;
    
    running = false;
  }
  
  
  
  // Add statistics of a timing operation
  void
  Timer::addstat (double const t,
                  double const b)
  {
    wtime  += t;
    wtime2 += pow (t, 2);
    wmin   = min (wmin, t);
    wmax   = max (wmax, t);
    
    bytes  += b;
    bytes2 += pow (b, 2);
    bmin   = min (bmin, b);
    bmax   = max (bmax, b);
    
    ++ count;
  }
  
  
  
  // Start the timer
  void
  Timer::start ()
  {
    DECLARE_CCTK_PARAMETERS;
    assert (not running);
    running = true;
    starttime = call_timer ();
  }
  
  
  
  // Stop the timer
  void
  Timer::stop (double const b)
  {
    DECLARE_CCTK_PARAMETERS;
    assert (running);
    running = false;
    ticks const endtime = call_timer ();
    addstat (elapsed (endtime, starttime), b);
  }
  
  
  
  // Reset the timer
  void
  Timer::reset ()
  {
    resetstats ();
  }
  
  
  
  // Timer name
  string
  Timer::name ()
    const
  {
    return timername;
  }
  
  
  
  // Output timer data
  void
  Timer::outputData (ostream & os)
    const
  {
    double avg, stddev, bavg, bstddev;
    if (count == 0.0) {
      avg     = 0.0;
      stddev  = 0.0;
      bavg    = 0.0;
      bstddev = 0.0;
    } else {
      avg     = wtime / count;
      stddev  = sqrt (max (0.0, wtime2 / count - pow (avg, 2)));
      bavg    = bytes / count;
      bstddev = sqrt (max (0.0, bytes2 / count - pow (bavg, 2)));
    }
    
    os << timername << ":"
       << " cnt: " << count
       << "   time: sum: " << cputick * wtime
       << " avg: " << cputick * avg
       << " stddev: " << cputick * stddev
       << " min: " << cputick * wmin
       << " max: " << cputick * wmax
       << "   bytes: sum: " << bytes
       << " avg: " << bavg
       << " stddev: " << bstddev
       << " min: " << bmin
       << " max: " << bmax
       << eol;
  }
  
  
  
  extern "C" {
    void
    CarpetLib_printtimestats (CCTK_ARGUMENTS);
  }
  
  void
  CarpetLib_printtimestats (CCTK_ARGUMENTS)
  {
    DECLARE_CCTK_ARGUMENTS;
    DECLARE_CCTK_PARAMETERS;
    
    if ((print_timestats_every > 0 and
         cctk_iteration % print_timestats_every == 0))
    {
      ostringstream filenamebuf;
      filenamebuf << out_dir << "/" << timestat_file
                  << "." << setw(4) << setfill('0') << dist::rank()
                  << ".txt";
      string const filename = filenamebuf.str();
      
      ofstream file;
      static bool do_truncate = true;
      if (do_truncate) {
        if (not IO_TruncateOutputFiles (cctkGH)) {
          do_truncate = false;
        }
      }
      if (do_truncate) {
        do_truncate = false;
        file.open (filename.c_str(), ios::out | ios::trunc);
      } else {
        file.open (filename.c_str(), ios::out | ios::app);
      }
      
      static bool do_print_info = true;
      if (do_print_info) {
        do_print_info = false;
        if (CCTK_IsFunctionAliased ("UniqueBuildID")) {
          char const * const build_id =
            static_cast <char const *> (UniqueBuildID (cctkGH));
          file << "Build ID: " << build_id << eol;
        }
        if (CCTK_IsFunctionAliased ("UniqueSimulationID")) {
          char const * const sim_id =
            static_cast <char const *> (UniqueSimulationID (cctkGH));
          file << "Simulation ID: " << sim_id << eol;
        }
        file << "Running with " << dist::size() << " processes and " << dist::total_num_threads() << " threads" << eol;
      } // if do_print_info
      
      file << "********************************************************************************" << eol
           << "CarpetLib timing information at iteration " << cctkGH->cctk_iteration << " time " << cctkGH->cctk_time << ":" << eol
           << timerSet;
      
      file.close ();
      
    } // if print_timestats
    
  }
  
  
  
  struct t_cycleclock {
    double total;
    double total_squared;
    double min_total;
    double max_total;
    double count;
    ticks last;
    
    t_cycleclock ()
    {
      reset();
    }
    
    ~t_cycleclock ()
    {
    }
    
    void start ()
    {
      last = getticks();
    }
    
    void stop ()
    {
      ticks const current = getticks();
      double const difference = elapsed (current, last);
      total += difference;
      total_squared += pow (difference, 2);
      min_total = min_total == 0.0 ? difference : min (min_total, difference);
      max_total = max (min_total, difference);
      count += 1;
    }
    
    void reset ()
    {
      total         = 0.0;
      total_squared = 0.0;
      min_total     = 0.0;      // numeric_limits<double>::max();
      max_total     = 0.0;
      count         = 0.0;
      // last          = 0.0;
    }
    
  };
  
  
  
  void * cycleclock_create (int const timernum)
  {
    return new t_cycleclock;
  }
  
  void cycleclock_destroy (int const timernum, void * const data)
  {
    if (data) {
      delete static_cast<t_cycleclock*> (data);
    }
  }
  
  void cycleclock_start (int const timernum, void * const data)
  {
    static_cast<t_cycleclock*> (data) -> start();
  }
  
  void cycleclock_stop (int const timernum, void * const data)
  {
    static_cast<t_cycleclock*> (data) -> stop();
  }
  
  void cycleclock_reset (int const timernum, void * const data)
  {
    static_cast<t_cycleclock*> (data) -> reset();
  }
  
  void cycleclock_get (int const timernum, void * const data_,
                       cTimerVal * const vals)
  {
    t_cycleclock const & data = * static_cast<t_cycleclock const *> (data_);
    
    // Total time
    vals[0].type       = val_double;
    vals[0].heading    = "cycle";
    vals[0].units      = "secs";
    vals[0].val.d      = data.total;
    vals[0].seconds    = cputick * vals[0].val.d;
    vals[0].resolution = cputick;
    
    // Average
    vals[1].type       = val_double;
    vals[1].heading    = "cycle[avg]";
    vals[1].units      = "secs";
    vals[1].val.d      = data.count == 0.0 ? 0.0 : data.total / data.count;
    vals[1].seconds    = cputick * vals[1].val.d;
    vals[1].resolution = cputick;
    
    // Standard deviation
    vals[2].type       = val_double;
    vals[2].heading    = "cycle[stddev]";
    vals[2].units      = "secs";
    vals[2].val.d      = (data.count == 0.0
                          ? 0.0
                          : sqrt (abs (data.total_squared * data.count -
                                       pow (data.total, 2)) / data.count));
    vals[2].seconds    = cputick * vals[2].val.d;
    vals[2].resolution = cputick;
    
    // Minimum
    vals[3].type       = val_double;
    vals[3].heading    = "cycle[min]";
    vals[3].units      = "secs";
    vals[3].val.d      = data.min_total;
    vals[3].seconds    = cputick * vals[3].val.d;
    vals[3].resolution = cputick;
    
    // Maximum
    vals[4].type       = val_double;
    vals[4].heading    = "cycle[max]";
    vals[4].units      = "secs";
    vals[4].val.d      = data.max_total;
    vals[4].seconds    = cputick * vals[4].val.d;
    vals[4].resolution = cputick;
  }
  
  void cycleclock_set (int const timernum, void * const data_,
                       cTimerVal * const vals)
  {
    t_cycleclock & data = * static_cast<t_cycleclock * restrict> (data_);
    
    data.reset();               // punt
    data.total = vals[0].val.d;
  }
  
  extern "C" {
    int CarpetLib_registercycleclock (void);
  }
  
  int CarpetLib_registercycleclock (void)
  {
    if (not have_cputick) calculate_cputick ();
    
    cClockFuncs functions;
    functions.n_vals  = 5;
    functions.create  = cycleclock_create;
    functions.destroy = cycleclock_destroy;
    functions.start   = cycleclock_start;
    functions.stop    = cycleclock_stop;
    functions.reset   = cycleclock_reset;
    functions.get     = cycleclock_get;
    functions.set     = cycleclock_set;
    
    CCTK_ClockRegister("cycle", &functions);
    
    return 0;
  }
  
} // namespace CarpetLib