Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Timer.h « mert - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b1101b50c35cdf297fb1550e0275ff77de325b6 (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
#ifndef MERT_TIMER_H_
#define MERT_TIMER_H_

#include <ostream>
#include <string>
#include <stdint.h>

class Timer
{
 private:
  // Time values are stored in microseconds.
  struct CPUTime {
    uint64_t user_time;                 // user CPU time
    uint64_t sys_time;                  // system CPU time

    CPUTime() : user_time(0), sys_time(0) { }
  };

  void GetCPUTimeMicroSeconds(CPUTime* cpu_time) const;

  bool m_is_running;
  uint64_t m_wall;                      // wall-clock time in microseconds
  CPUTime m_start_time;

  // No copying allowed
  Timer(const Timer&);
  void operator=(const Timer&);

 public:
  /**
   * 'm_is_running' is initially false. A timer needs to be explicitly started
   * using 'start'.
   */
  Timer()
      : m_is_running(false),
        m_wall(0),
        m_start_time() {}

  ~Timer() {}

  /**
   * Start a timer.  If it is already running, let it continue running.
   * Print an optional message.
   */
  void start(const char* msg = 0);

  /**
   * Restart the timer iff the timer is already running.
   * if the timer is not running, just start the timer.
   */
  void restart(const char* msg = 0);

  /**
   * Print out an optional message followed by the current timer timing.
   */
  void check(const char* msg = 0);

  /**
   */
  bool is_running() const { return m_is_running; }

  /**
   * Return the total time in seconds that the timer has been in the
   * "running" state since it was first "started" or last "restarted".
   * For "short" time periods (less than an hour), the actual cpu time
   * used is reported instead of the elapsed time.
   */
  double get_elapsed_cpu_time() const;

  /**
   * Return the total time in microseconds.
   */
  uint64_t get_elapsed_cpu_time_microseconds() const;

  /**
   * Get elapsed wall-clock time in seconds.
   */
  double get_elapsed_wall_time() const;

  /**
   * Get elapsed wall-clock time in microseconds.
   */
  uint64_t get_elapsed_wall_time_microseconds() const;

  /**
   * Return a string that has the user CPU time, system time, and total time.
   */
  std::string ToString() const;
};

/**
 * Allow timers to be printed to ostreams using the syntax 'os << t'
 * for an ostream 'os' and a timer 't'.  For example, "cout << t" will
 * print out the total amount of time 't' has been "running".
 */
inline std::ostream& operator<<(std::ostream& os, const Timer& t) {
  if (t.is_running()) {
    os << t.ToString();
  } else {
    os << "timer is not running.";
  }
  return os;
}

#endif  // MERT_TIMER_H_