/usr/include/dlib/timing.h is in libdlib-dev 18.18-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | // Copyright (C) 2011 Davis E. King (davis@dlib.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_TImING_Hh_
#define DLIB_TImING_Hh_
#include "misc_api.h"
#include <cstring>
#include "string.h"
#include <iostream>
// ----------------------------------------------------------------------------------------
/*!A timing
This set of functions is useful for determining how much time is spent
executing blocks of code. Consider the following example:
int main()
{
using namespace dlib::timing;
for (int i = 0; i < 10; ++i)
{
// timing block #1
start(1,"block #1");
dlib::sleep(500);
stop(1);
// timing block #2
start(2,"block #2");
dlib::sleep(1000);
stop(2);
}
print();
}
This program would output:
Timing report:
block #1: 5.0 seconds
block #2: 10.0 seconds
So we spent 5 seconds in block #1 and 10 seconds in block #2
Additionally, note that you can use an RAII style timing block object. For
example, if we wanted to find out how much time we spent in a loop a convenient
way to do this would be as follows:
int main()
{
using namespace dlib::timing;
for (int i = 0; i < 10; ++i)
{
block tb(1, "main loop");
dlib::sleep(1500);
}
print();
}
This program would output:
Timing report:
block main loop: 15.0 seconds
!*/
// ----------------------------------------------------------------------------------------
namespace dlib
{
namespace timing
{
const int TIME_SLOTS = 500;
const int NAME_LENGTH = 40;
inline uint64* time_buf()
{
static uint64 buf[TIME_SLOTS] = {0};
return buf;
}
inline char* name_buf(int i, const char* name)
{
static char buf[TIME_SLOTS][NAME_LENGTH] = {{0}};
// if this name buffer is empty then copy name into it
if (buf[i][0] == '\0')
{
using namespace std;
strncpy(buf[i], name, NAME_LENGTH-1);
buf[i][NAME_LENGTH-1] = '\0';
}
// return the name buffer
return buf[i];
}
inline timestamper& ts()
{
static timestamper ts_;
return ts_;
}
inline void start(int i )
{
time_buf()[i] -= ts().get_timestamp();
}
inline void start(int i, const char* name)
{
time_buf()[i] -= ts().get_timestamp();
name_buf(i,name);
}
inline void stop(int i)
{
time_buf()[i] += ts().get_timestamp();
}
inline void print()
{
using namespace std;
cout << "Timing report: " << endl;
// figure out how long the longest name is going to be.
unsigned long max_name_length = 0;
for (int i = 0; i < TIME_SLOTS; ++i)
{
string name;
// Check if the name buffer is empty. Use the name it contains if it isn't.
if (name_buf(i,"")[0] != '\0')
name = cast_to_string(i) + ": " + name_buf(i,"");
else
name = cast_to_string(i);
max_name_length = std::max<unsigned long>(max_name_length, name.size());
}
for (int i = 0; i < TIME_SLOTS; ++i)
{
if (time_buf()[i] != 0)
{
double time = time_buf()[i]/1000.0;
string name;
// Check if the name buffer is empty. Use the name it contains if it isn't.
if (name_buf(i,"")[0] != '\0')
name = cast_to_string(i) + ": " + name_buf(i,"");
else
name = cast_to_string(i);
// make sure the name is always the same length. Do so by padding with spaces
if (name.size() < max_name_length)
name += string(max_name_length-name.size(),' ');
if (time < 1000)
cout << " " << name << ": " << time << " milliseconds" << endl;
else if (time < 1000*1000)
cout << " " << name << ": " << time/1000.0 << " seconds" << endl;
else if (time < 1000*1000*60)
cout << " " << name << ": " << time/1000.0/60.0 << " minutes" << endl;
else
cout << " " << name << ": " << time/1000.0/60.0/60.0 << " hours" << endl;
}
}
}
inline void clear()
{
for (int i = 0; i < TIME_SLOTS; ++i)
{
// clear timing buffer
time_buf()[i] = 0;
// clear name buffer
name_buf(i,"")[0] = '\0';
}
}
struct block
{
/*!
WHAT THIS OBJECT REPRESENTS
This is an RAII tool for calling start() and stop()
!*/
block(int i):idx(i) {start(idx);}
block(int i, const char* str):idx(i) {start(idx,str);}
~block() { stop(idx); }
const int idx;
};
}
}
#endif // DLIB_TImING_Hh_
|