-
Notifications
You must be signed in to change notification settings - Fork 35
/
main.c
437 lines (341 loc) · 8.13 KB
/
main.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
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
/*
* Copyright (C) 2010 Anton Blanchard <anton@au.ibm.com>, IBM
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version
* 2 of the License, or (at your option) any later version.
*/
#define _GNU_SOURCE
#include <sched.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
#include <sys/mman.h>
#include <hwloc.h>
#include <sys/types.h>
#include <signal.h>
#include <poll.h>
#include <sys/types.h>
#include <sys/wait.h>
#define MAX_TASKS 2048
#define MAX_CACHELINE_SIZE 256
#define WARMUP_ITERATIONS 5
extern char *testcase_description;
extern void __attribute__((weak)) testcase_prepare(unsigned long nr_tasks) { }
extern void __attribute__((weak)) testcase_cleanup(void) { }
extern void *testcase(unsigned long long *iterations, unsigned long nr);
static char *initialise_shared_area(unsigned long size)
{
char template[] = "/tmp/shared_area_XXXXXX";
int fd;
char *m;
int page_size = getpagesize();
/* Align to page boundary */
size = (size + page_size-1) & ~(page_size-1);
fd = mkstemp(template);
if (fd < 0) {
perror("mkstemp");
exit(1);
}
if (ftruncate(fd, size) == -1) {
perror("ftruncate");
unlink(template);
exit(1);
}
m = mmap(NULL, size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
if (m == MAP_FAILED) {
perror("mmap");
unlink(template);
exit(1);
}
memset(m, 0, size);
unlink(template);
return m;
}
static void usage(char *command)
{
printf("Usage: %s [options]\n\n", command);
printf("\t-s iterations\tNumber of iterations to run\n");
printf("\t-t tasks\tNumber of threads or processes to run\n");
printf("\t-m\t\tAffinitize tasks on SMT threads (default cores)\n");
printf("\t-n\t\tNo affinity\n");
exit(1);
}
struct args
{
void *(*func)(unsigned long long *iterations, unsigned long nr);
unsigned long long *arg1;
unsigned long arg2;
int poll_fd;
hwloc_topology_t topology;
hwloc_cpuset_t cpuset;
};
static void *testcase_trampoline(void *p)
{
struct args *args = p;
struct pollfd pfd = { args->poll_fd, POLLIN, 0 };
int ret;
do {
ret = poll(&pfd, 1, -1);
} while ((ret == -1) && (errno == EINTR));
return args->func(args->arg1, args->arg2);
}
static bool use_affinity = true;
#ifdef THREADS
#include <pthread.h>
static pthread_t threads[2*MAX_TASKS];
static int nr_threads;
void new_task(void *(func)(void *), void *arg)
{
pthread_create(&threads[nr_threads++], NULL, func, arg);
}
static void *pre_trampoline(void *p)
{
struct args *args = p;
if (use_affinity && hwloc_set_thread_cpubind(args->topology, pthread_self(), args->cpuset, 0) < 0) {
perror("hwloc_set_thread_cpubind");
exit(1);
}
pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL);
return testcase_trampoline(args);
}
void new_task_affinity(struct args *args)
{
pthread_attr_t attr;
pthread_attr_init(&attr);
pthread_create(&threads[nr_threads++], &attr, pre_trampoline, args);
pthread_attr_destroy(&attr);
}
/* All threads will die when we exit */
static void kill_tasks(void)
{
int i;
for (i = 0; i < nr_threads; i++) {
pthread_cancel(threads[i]);
}
for (i = 0; i < nr_threads; i++) {
pthread_join(threads[i], NULL);
}
}
#else
#include <signal.h>
static int pids[2*MAX_TASKS];
static int nr_pids;
/* Watchdog used to make sure all children exit when the parent does */
static int parent_pid;
static void watchdog(int junk)
{
if (kill(parent_pid, 0) == -1)
exit(0);
alarm(1);
}
void new_task(void *(func)(void *), void *arg)
{
int pid;
parent_pid = getpid();
pid = fork();
if (pid < 0) {
perror("fork");
exit(1);
}
if (!pid) {
struct sigaction sa;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = watchdog;
sa.sa_flags = SA_RESTART;
sigaction(SIGALRM, &sa, NULL);
alarm(1);
func(arg);
}
pids[nr_pids++] = pid;
}
void new_task_affinity(struct args *args)
{
int pid;
parent_pid = getpid();
pid = fork();
if (pid < 0) {
perror("fork");
exit(1);
}
if (!pid) {
struct sigaction sa;
memset(&sa, 0, sizeof(sa));
sa.sa_handler = watchdog;
sa.sa_flags = SA_RESTART;
sigaction(SIGALRM, &sa, NULL);
alarm(1);
testcase_trampoline(args);
}
pids[nr_pids++] = pid;
}
static void kill_tasks(void)
{
int i;
for (i = 0; i < nr_pids; i++)
kill(pids[i], SIGTERM);
for (i = 0; i < nr_pids; i++)
waitpid(pids[i], NULL, 0);
}
#endif
int main(int argc, char *argv[])
{
int opt_tasks = 1;
int opt_iterations = 0;
int iterations = 0;
int i, n;
char *m;
static unsigned long long *results[MAX_TASKS];
hwloc_topology_t topology;
unsigned long long prev[MAX_TASKS] = {0, };
unsigned long long total = 0;
int fd[2];
bool smt_affinity = false;
struct args *args;
bool verbose = false;
while (1) {
signed char c = getopt(argc, argv, "mt:s:hvn");
if (c < 0)
break;
switch (c) {
case 'm':
smt_affinity = true;
break;
case 't':
opt_tasks = atoi(optarg);
if (opt_tasks > MAX_TASKS) {
printf("tasks cannot exceed %d\n",
MAX_TASKS);
exit(1);
}
break;
case 's':
opt_iterations = atoi(optarg);
break;
case 'v':
verbose = true;
break;
case 'n':
use_affinity = false;
break;
default:
usage(argv[0]);
}
}
if (optind < argc)
usage(argv[0]);
if (smt_affinity && (use_affinity == false))
usage(argv[0]);
m = initialise_shared_area(opt_tasks * MAX_CACHELINE_SIZE);
for (i = 0; i < opt_tasks; i++)
results[i] = (unsigned long long *)&m[i * MAX_CACHELINE_SIZE];
if (pipe(fd) == -1) {
perror("pipe");
exit(1);
}
testcase_prepare(opt_tasks);
hwloc_topology_init(&topology);
hwloc_topology_load(topology);
n = hwloc_get_nbobjs_by_type(topology,
smt_affinity ? HWLOC_OBJ_PU : HWLOC_OBJ_CORE);
if (n == 0) {
printf("No Cores/PUs found. Try %s -m flag\n",
smt_affinity ? "removing" : "adding");
exit(1);
}
if (n < 1) {
perror("hwloc_get_nbobjs_by_type");
exit(1);
}
args = malloc(opt_tasks * sizeof(struct args));
if (!args) {
perror("malloc");
exit(1);
}
for (i = 0; i < opt_tasks; i++) {
hwloc_obj_t obj;
hwloc_cpuset_t old_cpuset;
int flags = 0;
args[i].func = testcase;
args[i].arg1 = results[i];
args[i].arg2 = i;
args[i].poll_fd = fd[0];
obj = hwloc_get_obj_by_type(topology,
smt_affinity ? HWLOC_OBJ_PU : HWLOC_OBJ_CORE,
i % n);
if (hwloc_topology_dup(&args[i].topology, topology)) {
perror("hwloc_topology_dup");
exit(1);
}
if (!(args[i].cpuset = hwloc_bitmap_dup(obj->cpuset))) {
perror("hwloc_bitmap_dup");
exit(1);
}
old_cpuset = hwloc_bitmap_alloc();
if (!old_cpuset) {
perror("hwloc_bitmap_alloc");
exit(1);
}
#ifdef THREADS
flags |= HWLOC_CPUBIND_THREAD;
#endif
if (hwloc_get_cpubind(topology, old_cpuset, flags) < 0) {
perror("hwloc_get_cpubind");
exit(1);
}
if (use_affinity && hwloc_set_cpubind(topology, obj->cpuset, flags) < 0) {
perror("hwloc_set_cpubind");
exit(1);
}
new_task_affinity(&args[i]);
if (use_affinity && hwloc_set_cpubind(topology, old_cpuset, flags) < 0) {
perror("hwloc_set_cpubind");
exit(1);
}
hwloc_bitmap_free(old_cpuset);
}
if (write(fd[1], &i, 1) != 1) {
perror("write");
exit(1);
}
hwloc_topology_destroy(topology);
printf("testcase:%s\n", testcase_description);
printf("warmup\n");
while (1) {
unsigned long long sum = 0, min = -1ULL, max = 0;
sleep(1);
for (i = 0; i < opt_tasks; i++) {
unsigned long long val = *(results[i]);
unsigned long long diff = val - prev[i];
if (verbose)
printf("%4d -> %llu\n", i, diff);
if (diff < min)
min = diff;
if (diff > max)
max = diff;
sum += diff;
prev[i] = val;
}
printf("min:%llu max:%llu total:%llu\n", min, max, sum);
if (iterations == WARMUP_ITERATIONS)
printf("measurement\n");
if (iterations++ > WARMUP_ITERATIONS)
total += sum;
if (opt_iterations &&
(iterations > (opt_iterations + WARMUP_ITERATIONS))) {
printf("average:%llu\n", total / opt_iterations);
break;
}
}
kill_tasks();
for (i = 0; i < opt_tasks; i++) {
hwloc_bitmap_free(args[i].cpuset);
hwloc_topology_destroy(args[i].topology);
}
free(args);
testcase_cleanup();
exit(0);
}