Loki/test/SmallObj/timer.h
syntheticpp 1eb831f009 calculate also speed-up factor
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@290 7ec92016-0320-0410-acc4-a06ded1c099a
2005-10-06 10:17:56 +00:00

55 lines
714 B
C++
Executable file

#include <ctime>
#include <iostream>
#include <stdlib.h>
#include <cmath>
class Timer
{
public:
Timer()
{
t100 = 0;
};
void start()
{
t0 = clock();
}
void stop()
{
t1 = clock();
}
int t()
{
return t1-t0;
}
double sec(int t)
{
return floor(100.0*double(t)/1000.0 )/100.0;
}
int rel(int t)
{
return ( t100==0 ? 100 : (int) floor(100.0*t/t100+0.5) );
}
double speedup(int t)
{
double tup=t;
return (tup!=0 ? floor(100.0*(t100!=0?t100:tup)/tup+0.5)/100 : 1);
}
double t100;
void print(int t, const char* s)
{
std::cout << s <<"\trelative time: " << rel(t) << "%\tspeed-up factor: " << speedup(t) << "" << std::endl;
}
private:
int t0;
int t1;
};