Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91406745
timer.h
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
Sun, Nov 10, 19:42
Size
451 B
Mime Type
text/x-c
Expires
Tue, Nov 12, 19:42 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22255038
Attached To
R1448 Lenstool-HPC
timer.h
View Options
#pragma once
//
#include <sys/time.h>
extern
"C"
{
double
myseconds
()
{
struct
timeval
tp
;
struct
timezone
tzp
;
//
int
i
=
gettimeofday
(
&
tp
,
&
tzp
);
//
return
(
(
double
)
tp
.
tv_sec
+
(
double
)
tp
.
tv_usec
*
1.e-6
);
}
}
static
inline
unsigned
long
long
cycles
()
{
unsigned
long
long
u
;
__asm__
volatile
(
"rdtscp;shlq $32,%%rdx;orq %%rdx,%%rax;movq %%rax,%0"
:
"=q"
(
u
)
::
"%rax"
,
"%rdx"
,
"rcx"
);
return
u
;
}
Event Timeline
Log In to Comment