Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104607406
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
Mon, Mar 10, 20:36
Size
451 B
Mime Type
text/x-c
Expires
Wed, Mar 12, 20:36 (2 d)
Engine
blob
Format
Raw Data
Handle
24761138
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