timemory 3.3.0
Modular C++ Toolkit for Performance Analysis and Logging. Profiling API and Tools for C, C++, CUDA, Fortran, and Python. The C++ template API is essentially a framework to creating tools: it is designed to provide a unifying interface for recording various performance measurements alongside data logging and interfaces to other tools.
tim::component::cpu_clock Struct Reference

this component extracts only the CPU time spent in both user- and kernel- mode. Only relevant as a time when a different is computed Do not use a single CPU time as an amount of time; it doesn't work that way. More...

#include "timemory/components/timing/components.hpp"

+ Collaboration diagram for tim::component::cpu_clock:

Public Types

using ratio_t = std::nano
 
using value_type = int64_t
 
using base_type = base< cpu_clock, value_type >
 
using storage_type = empty_storage
 

Public Member Functions

double get () const noexcept
 
double get_display () const noexcept
 
void start () noexcept
 
void stop () noexcept
 

Static Public Member Functions

static std::string label ()
 
static std::string description ()
 
static value_type record () noexcept
 
template<typename... Args>
static opaque get_opaque (Args &&...)
 

Detailed Description

this component extracts only the CPU time spent in both user- and kernel- mode. Only relevant as a time when a different is computed Do not use a single CPU time as an amount of time; it doesn't work that way.

Definition at line 105 of file components.hpp.

Member Typedef Documentation

◆ base_type

◆ ratio_t

Definition at line 107 of file components.hpp.

◆ storage_type

Definition at line 66 of file declaration.hpp.

◆ value_type

Definition at line 108 of file components.hpp.

Member Function Documentation

◆ description()

static std::string tim::component::cpu_clock::description ( )
inlinestatic

Definition at line 112 of file components.hpp.

113 {
114 return "Total CPU time spent in both user- and kernel-mode";
115 }

◆ get()

double tim::component::cpu_clock::get ( ) const
inlinenoexcept

Definition at line 120 of file components.hpp.

121 {
122 return load() / static_cast<double>(base_type::get_unit());
123 }
static int64_t get_unit()

References tim::component::base< Tp, Value >::get_unit(), and tim::component::base< cpu_clock >::load().

Referenced by get_display().

◆ get_display()

double tim::component::cpu_clock::get_display ( ) const
inlinenoexcept

Definition at line 124 of file components.hpp.

124{ return get(); }
double get() const noexcept
Definition: components.hpp:120

References get().

◆ get_opaque()

template<typename... Args>
static opaque tim::component::empty_base::get_opaque ( Args &&  ...)
inlinestaticinherited

Definition at line 72 of file declaration.hpp.

73 {
74 return opaque{};
75 }

◆ label()

static std::string tim::component::cpu_clock::label ( )
inlinestatic

Definition at line 111 of file components.hpp.

111{ return "cpu"; }

◆ record()

static value_type tim::component::cpu_clock::record ( )
inlinestaticnoexcept

Definition at line 116 of file components.hpp.

117 {
118 return tim::get_clock_cpu_now<int64_t, ratio_t>();
119 }

Referenced by tim::component::cpu_util::record(), start(), and stop().

◆ start()

void tim::component::cpu_clock::start ( )
inlinenoexcept

Definition at line 125 of file components.hpp.

125{ value = record(); }
static value_type record() noexcept
Definition: components.hpp:116

References record().

◆ stop()

void tim::component::cpu_clock::stop ( )
inlinenoexcept

Definition at line 126 of file components.hpp.

127 {
128 value = (record() - value);
129 accum += value;
130 }

References record().


The documentation for this struct was generated from the following file: