-
Notifications
You must be signed in to change notification settings - Fork 3
/
my_time.c
52 lines (44 loc) · 1.11 KB
/
my_time.c
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
// Windows
#ifdef _WIN32
#include <Windows.h>
double get_wall_time() {
LARGE_INTEGER time, freq;
if (!QueryPerformanceFrequency(&freq)) {
// Handle error
return 0;
}
if (!QueryPerformanceCounter(&time)) {
// Handle error
return 0;
}
return (double)time.QuadPart / freq.QuadPart;
}
double get_cpu_time() {
FILETIME a, b, c, d;
if (GetProcessTimes(GetCurrentProcess(),&a,&b,&c,&d) != 0) {
// Returns total user time.
// Can be tweaked to include kernel times as well.
return
(double)(d.dwLowDateTime |
((unsigned long long)d.dwHighDateTime << 32)) * 0.000001;
} else {
// Handle error
return 0;
}
}
// Posix/Linux
#else
#include <time.h>
#include <sys/time.h>
double get_wall_time() {
struct timeval time;
if (gettimeofday(&time,NULL)) {
// Handle error
return 0;
}
return (double)time.tv_sec + (double)time.tv_usec * 0.000001;
}
double get_cpu_time() {
return (double)clock() / CLOCKS_PER_SEC;
}
#endif