-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathClockBench.cpp
executable file
·186 lines (148 loc) · 4.19 KB
/
ClockBench.cpp
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
// Copyright 2014 by Bill Torpey. All Rights Reserved.
// This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 3.0 United States License.
// http://creativecommons.org/licenses/by-nc-nd/3.0/us/deed.en
#include <time.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <vector>
#include <cmath>
using namespace std;
#define ONE_BILLION 1000000000L
// NOTE: if you change this value you prob also need to adjust later code that does "& 0xff" to use modulo arithmetic instead
const int BUCKETS = 1024; // how many samples to collect per iteration
const int ITERS = 100; // how many iterations to run
double CPU_FREQ = 1;
#include "ClockBench.asm"
// macro to call clock_gettime w/different values for CLOCK
#define do_clock(CLOCK) \
do { \
for (int i = 0; i < ITERS * BUCKETS; ++i) { \
struct timespec x; \
clock_gettime(CLOCK, &x); \
int n = i & (BUCKETS-1); \
timestamp[n] = (x.tv_sec * ONE_BILLION) + x.tv_nsec; \
} \
deltaT x(#CLOCK, timestamp); \
x.print(); \
} while(0)
struct deltaT {
deltaT(const char* name, vector<long> v) : sum(0), sum2(0), min(-1), max(0), avg(0), median(0), stdev(0), name(name)
{
// create vector with deltas between adjacent entries
x = v;
count = x.size() -1;
for (int i = 0; i < count; ++i) {
x[i] = x[i+1] - x[i];
}
for (int i = 0; i < count; ++i) {
sum += x[i];
sum2 += (x[i] * x[i]);
if (x[i] > max) max = x[i];
if ((min == -1) || (x[i] < min)) min = x[i];
}
avg = sum / count;
median = min + ((max - min) / 2);
stdev = sqrt((count * sum2 - (sum * sum)) / (count * count));
}
void print()
{
printf("%25s\t", name);
printf("%ld\t%7.2f\t%7.2f\t%7.2f\t%7.2f\t%7.2f\n", count, min, max, avg, median, stdev);
}
void dump(FILE* file)
{
if (file == NULL)
return;
fprintf(file, "%s", name);
for (int i = 0 ; i < count; ++i ) {
fprintf(file, "\t%ld", x[i]);
}
fprintf(file, "\n");
}
vector<long> x;
long count;
double sum;
double sum2;
double min;
double max;
double avg;
double median;
double stdev;
const char* name;
};
int main(int argc, char** argv)
{
if (argc > 1) {
CPU_FREQ = strtod(argv[1], NULL);
}
FILE* file = NULL;
if (argc > 2) {
file = fopen(argv[2], "w");
}
vector<long> timestamp;
timestamp.resize(BUCKETS);
printf("%25s\t", "Method");
printf("%s\t%7s\t%7s\t%7s\t%7s\t%7s\n", "samples", "min", "max", "avg", "median", "stdev");
#if _POSIX_TIMERS > 0
#ifdef CLOCK_REALTIME
do_clock(CLOCK_REALTIME);
#endif
#ifdef CLOCK_REALTIME_COARSE
do_clock(CLOCK_REALTIME_COARSE);
#endif
#ifdef CLOCK_REALTIME_HR
do_clock(CLOCK_REALTIME_HR);
#endif
#ifdef CLOCK_MONOTONIC
do_clock(CLOCK_MONOTONIC);
#endif
#ifdef CLOCK_MONOTONIC_RAW
do_clock(CLOCK_MONOTONIC_RAW);
#endif
#ifdef CLOCK_MONOTONIC_COARSE
do_clock(CLOCK_MONOTONIC_COARSE);
#endif
#endif
{
for (int i = 0; i < ITERS * BUCKETS; ++i) {
int n = i & (BUCKETS-1);
timestamp[n] = cpuid_rdtsc();
}
for (int i = 0; i < BUCKETS; ++i) {
timestamp[i] = (long) ((double) timestamp[i] / CPU_FREQ);
}
deltaT x("cpuid+rdtsc", timestamp);
x.print();
x.dump(file);
}
// will throw SIGILL on machine w/o rdtscp instruction
#ifdef RDTSCP
{
for (int i = 0; i < ITERS * BUCKETS; ++i) {
int n = i & (BUCKETS-1);
timestamp[n] = rdtscp();
}
for (int i = 0; i < BUCKETS; ++i) {
timestamp[i] = (long) ((double) timestamp[i] / CPU_FREQ);
}
deltaT x("rdtscp", timestamp);
x.print();
x.dump(file);
}
#endif
{
for (int i = 0; i < ITERS * BUCKETS; ++i) {
int n = i & (BUCKETS-1);
timestamp[n] = rdtsc();
}
for (int i = 0; i < BUCKETS; ++i) {
timestamp[i] = (long) ((double) timestamp[i] / CPU_FREQ);
}
deltaT x("rdtsc", timestamp);
x.print();
x.dump(file);
}
printf("Using CPU frequency = %f\n", CPU_FREQ);
return 0;
}