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
|
/*!
* \file
* \brief Implementation of Timing classes
* \author Thomas Eriksson, Tony Ottosson, Tobias Ringstrom and Adam Piatyszek
*
* -------------------------------------------------------------------------
*
* IT++ - C++ library of mathematical, signal processing, speech processing,
* and communications classes and functions
*
* Copyright (C) 1995-2008 (see AUTHORS file for a list of contributors)
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* -------------------------------------------------------------------------
*/
#ifndef _MSC_VER
# include <itpp/config.h>
#else
# include <itpp/config_msvc.h>
#endif
#ifdef TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <ctime>
#else
# ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# include <ctime>
# endif
#endif
#include <itpp/base/timing.h>
#include <iostream>
#include <cmath>
#if defined(_WIN32) && !defined(__CYGWIN__)
#include <windows.h>
int gettimeofday(struct timeval* p, void* tz)
{
union {
long long ns100; /* time since 1 Jan 1601 in 100ns units */
FILETIME ft;
} _now;
GetSystemTimeAsFileTime(&(_now.ft));
p->tv_usec = (long)((_now.ns100 / 10LL) % 1000000LL);
/* time since 1 Jan 1970 */
p->tv_sec= (long)((_now.ns100 - 116444736000000000LL) / 10000000LL);
return 0;
}
#endif
namespace itpp {
//! Global object for tic and toc functions
Real_Timer __tic_toc_timer;
//----------------------------------------------------------------------------
// class Timer
//----------------------------------------------------------------------------
Timer::Timer()
{
reset();
}
void Timer::start(void)
{
if (!running) {
start_time = get_current_time();
running = true;
}
}
double Timer::stop(void)
{
if (running) {
stop_time = get_current_time();
elapsed_time += stop_time-start_time;
running = false;
}
return elapsed_time;
}
void Timer::reset(double t)
{
elapsed_time = t;
start_time = 0;
stop_time = 0;
running = false;
}
double Timer::get_time() const
{
return running ?
elapsed_time + get_current_time() - start_time :
elapsed_time;
}
void Timer::tic(void)
{
reset();
start();
}
double Timer::toc(void)
{
return get_time() ;
}
void Timer::toc_print(void)
{
std::cout << "Elapsed time = " << get_time() << " seconds" << std::endl;
}
//----------------------------------------------------------------------------
// class CPU_Timer
//----------------------------------------------------------------------------
double CPU_Timer::get_current_time() const
{
return static_cast<double>(clock()) / CLOCKS_PER_SEC;
}
//----------------------------------------------------------------------------
// class Real_Timer
//----------------------------------------------------------------------------
double Real_Timer::get_current_time() const
{
struct timeval t;
gettimeofday(&t, 0);
return t.tv_sec + t.tv_usec * 1.0e-6;
}
void tic()
{
__tic_toc_timer.tic();
}
double toc()
{
return __tic_toc_timer.toc();
}
void toc_print()
{
__tic_toc_timer.toc_print();
}
void pause(double t)
{
if (t==-1) {
std::cout << "(Press enter to continue)" << std::endl;
getchar();
} else {
Real_Timer T;
T.start();
while (T.get_time()<t);
}
}
} // namespace itpp
|