SNAP Library 2.1, User Reference
2013-09-25 10:47:25
SNAP, a general purpose, high performance system for analysis and manipulation of large networks
|
#include <tm.h>
Public Member Functions | |
TTmProfiler () | |
int | AddTimer (const TStr &TimerNm) |
int | GetTimerId (const TStr &TimerNm) const |
TStr | GetTimerNm (const int &TimerId) const |
int | GetTimers () const |
int | GetTimerIdFFirst () const |
bool | GetTimerIdFNext (int &TimerId) const |
void | StartTimer (const TStr &TimerNm) |
void | StartTimer (const int &TimerId) |
void | StopTimer (const TStr &TimerNm) |
void | StopTimer (const int &TimerId) |
void | ResetAll () |
void | ResetTimer (const TStr &TimerNm) |
void | ResetTimer (const int &TimerId) |
double | GetTimerSumSec () const |
double | GetTimerSec (const int &TimerId) const |
void | PrintReport (const TStr &ProfileNm="") const |
Static Public Member Functions | |
static PTmProfiler | New () |
Private Attributes | |
TCRef | CRef |
TInt | MxNmLen |
THash< TStr, TTmStopWatch > | TimerH |
Friends | |
class | TPt< TTmProfiler > |
TTmProfiler::TTmProfiler | ( | ) | [inline] |
int TTmProfiler::AddTimer | ( | const TStr & | TimerNm | ) |
int TTmProfiler::GetTimerId | ( | const TStr & | TimerNm | ) | const [inline] |
int TTmProfiler::GetTimerIdFFirst | ( | ) | const [inline] |
Definition at line 412 of file tm.h.
{ return TimerH.FFirstKeyId(); }
bool TTmProfiler::GetTimerIdFNext | ( | int & | TimerId | ) | const [inline] |
Definition at line 413 of file tm.h.
{ return TimerH.FNextKeyId(TimerId); }
TStr TTmProfiler::GetTimerNm | ( | const int & | TimerId | ) | const [inline] |
int TTmProfiler::GetTimers | ( | ) | const [inline] |
double TTmProfiler::GetTimerSec | ( | const int & | TimerId | ) | const |
double TTmProfiler::GetTimerSumSec | ( | ) | const |
Definition at line 1279 of file tm.cpp.
{ double Sum = 0.0; int TimerId = GetTimerIdFFirst(); while (GetTimerIdFNext(TimerId)) { Sum += GetTimerSec(TimerId); } return Sum; }
static PTmProfiler TTmProfiler::New | ( | ) | [inline, static] |
Definition at line 406 of file tm.h.
{ return new TTmProfiler; }
void TTmProfiler::PrintReport | ( | const TStr & | ProfileNm = "" | ) | const |
Definition at line 1292 of file tm.cpp.
{ const double TimerSumSec = GetTimerSumSec(); printf("-- %s --\n", ProfileNm.CStr()); printf("Sum: (%.2f sec):\n", TimerSumSec); int TimerId = GetTimerIdFFirst(); while (GetTimerIdFNext(TimerId)) { // get timer name TStr TimerNm = GetTimerNm(TimerId); TimerNm = TStr::GetSpaceStr(TimerNm.Len() - MxNmLen) + TimerNm; // get timer time and precentage if (TimerSumSec > 0.0) { const double TimerSec = GetTimerSec(TimerId); const double TimerPerc = TimerSec / TimerSumSec * 100.0; printf(" %s: %.2fs [%.2f%%]\n", TimerNm.CStr(), TimerSec, TimerPerc); } else { printf(" %s: -\n", TimerNm.CStr()); } } printf("--\n"); }
void TTmProfiler::ResetAll | ( | ) |
Definition at line 1272 of file tm.cpp.
{ int TimerId = GetTimerIdFFirst(); while (GetTimerIdFNext(TimerId)) { ResetTimer(TimerId); } }
void TTmProfiler::ResetTimer | ( | const TStr & | TimerNm | ) | [inline] |
void TTmProfiler::ResetTimer | ( | const int & | TimerId | ) | [inline] |
void TTmProfiler::StartTimer | ( | const TStr & | TimerNm | ) | [inline] |
void TTmProfiler::StartTimer | ( | const int & | TimerId | ) | [inline] |
void TTmProfiler::StopTimer | ( | const TStr & | TimerNm | ) | [inline] |
void TTmProfiler::StopTimer | ( | const int & | TimerId | ) | [inline] |
friend class TPt< TTmProfiler > [friend] |
TCRef TTmProfiler::CRef [private] |
TInt TTmProfiler::MxNmLen [private] |
THash<TStr, TTmStopWatch> TTmProfiler::TimerH [private] |