Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121977113
timer.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Jul 15, 04:13
Size
517 B
Mime Type
text/x-c
Expires
Thu, Jul 17, 04:13 (2 d)
Engine
blob
Format
Raw Data
Handle
27368678
Attached To
rLAMMPS lammps
timer.cpp
View Options
#include "timer.h"
Timer::Timer()
{
flag = 0;
start();
return;
}
void Timer::start()
{
t1 = clock();
flag |= 1;
return;
}
void Timer::stop()
{
if ( flag&1 ) {
t2 = clock();
flag |= 2;
}
return;
}
void Timer::print()
{
if ( (flag&3) != 3) return;
cpu_time_used = ((double) (t2 - t1)) / CLOCKS_PER_SEC;
printf("Total CPU time used: %g seconds.\n", cpu_time_used);
return;
}
double Timer::elapse()
{
if ( (flag&3) != 3) return 0.;
else return ((double) (t2 - t1)) / CLOCKS_PER_SEC;
}
Event Timeline
Log In to Comment