Program Listing for File RawCycleClock.hpp

Return to documentation for file (include/uitsl/chrono/RawCycleClock.hpp)

#pragma once
#ifndef UITSL_CHRONO_RAWCYCLECLOCK_HPP_INCLUDE
#define UITSL_CHRONO_RAWCYCLECLOCK_HPP_INCLUDE

#include <algorithm>
#include <chrono>
#include <ctime>
#include <ratio>

#include <benchmark/src/cycleclock.h>

#include "chrono_utils.hpp"

// quick-bench profiling results
// gcc: https://quick-bench.com/q/WcbqUWBCoNBJvCP4n8h3kYfZDXU
// clang: https://quick-bench.com/q/ezQiwgeEWnKsYgcf3yZHJ1arjwQ
// ~77x faster than std::chrono clocks

namespace uitsl {

struct RawCycleClock {

  // An arithmetic type or a class emulating an arithmetic type.
  // The representation type of C1::duration.
  using rep = size_t;

  // A specialization of std::ratio.
  // The tick period of the clock in seconds.
  // (this is blatantly false, but in raw mode assume one cycle = one second)
  using period = std::ratio<1>;

  // The duration type of the clock.
  using duration = std::chrono::duration<rep, period>;

  // The std::chrono::time_point type of the clock.
  using time_point = std::chrono::time_point<RawCycleClock>;

  // true if t1 <= t2 is always true and the time between clock ticks
  // is constant, otherwise false
  const static bool is_steady{ false };

  // Returns a time_point object representing the current point in time.
  static time_point now() { return time_point{
    std::chrono::seconds{ benchmark::cycleclock::Now() }
  }; }

};

} // namespace uitsl

#endif // #ifndef UITSL_CHRONO_RAWCYCLECLOCK_HPP_INCLUDE