summaryrefslogtreecommitdiff
path: root/src/experiment.cpp
blob: a6fdb8a7456fafa88809935a5b1a3f3aca9bbece (plain)
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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
/*******************************************************************************
 * Copyright (c) 2006 International Business Machines Corporation.             *
 * All rights reserved. This program and the accompanying materials            *
 * are made available under the terms of the Common Public License v1.0        *
 * which accompanies this distribution, and is available at                    *
 * http://www.opensource.org/licenses/cpl1.0.php                               *
 *                                                                             *
 * Contributors:                                                               *
 *    Douglas M. Pase - initial API and implementation                         *
 *    Tim Besard - prefetching, JIT compilation                                *
 *******************************************************************************/

//
// Configuration
//

// Implementation header
#include "experiment.h"

// System includes
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#if defined(NUMA)
#include <numa.h>
#endif

// Local includes
#include "chain.h"


//
// Implementation
//

Experiment::Experiment() :
    strict           (false),
    pointer_size     (DEFAULT_POINTER_SIZE),
    bytes_per_line   (DEFAULT_BYTES_PER_LINE),
    links_per_line   (DEFAULT_LINKS_PER_LINE),
    bytes_per_page   (DEFAULT_BYTES_PER_PAGE),
    lines_per_page   (DEFAULT_LINES_PER_PAGE),
    links_per_page   (DEFAULT_LINKS_PER_PAGE),
    bytes_per_chain  (DEFAULT_BYTES_PER_CHAIN),
    lines_per_chain  (DEFAULT_LINES_PER_CHAIN),
    links_per_chain  (DEFAULT_LINKS_PER_CHAIN),
    pages_per_chain  (DEFAULT_PAGES_PER_CHAIN),
    chains_per_thread(DEFAULT_CHAINS_PER_THREAD),
    bytes_per_thread (DEFAULT_BYTES_PER_THREAD),
    num_threads      (DEFAULT_THREADS),
    bytes_per_test   (DEFAULT_BYTES_PER_TEST),
    loop_length      (DEFAULT_LOOPLENGTH),
    seconds          (DEFAULT_SECONDS),
    iterations       (DEFAULT_ITERATIONS),
    experiments      (DEFAULT_EXPERIMENTS),
    prefetch_hint    (NONE),
    output_mode      (TABLE),
    access_pattern   (RANDOM),
    stride           (1),
    numa_placement   (LOCAL),
    offset_or_mask   (0),
    placement_map    (NULL),
    thread_domain    (NULL),
    chain_domain     (NULL),
    numa_max_domain  (0),
    num_numa_domains (1)
{
}

Experiment::~Experiment() {
}

// interface:
//
// -l or --line             bytes per cache line (line size)
// -p or --page             bytes per page  (page size)
// -c or --chain            bytes per chain (used to compute pages per chain)
// -r or --references       chains per thread (memory loading)
// -t or --threads          number of threads (concurrency and contention)
// -i or --iters            iterations
// -e or --experiments      experiments
// -g or --loop				cycles to execute for each iteration (latency hiding)
// -f or --prefetch			use of prefetching
// -a or --access           memory access pattern
//         random           random access pattern
//         forward <stride> exclusive OR and mask
//         reverse <stride> addition and offset
// -o or --output           output mode
//         hdr              header only
//         csv              csv only
//         both             header + csv
//         table            human-readable table of values
// -n or --numa             numa placement
//         local            local allocation of all chains
//         xor <mask>       exclusive OR and mask
//         add <offset>     addition and offset
//         map <map>        explicit mapping of threads and chains to domains

int Experiment::parse_args(int argc, char* argv[]) {
	int error = 0;
	for (int i = 1; i < argc; i++) {
		if (strcasecmp(argv[i], "-x") == 0
				|| strcasecmp(argv[i], "--strict") == 0) {
			this->strict = true;
		} else if (strcasecmp(argv[i], "-s") == 0
				|| strcasecmp(argv[i], "--seconds") == 0) {
			i++;
			if (i == argc) {
				error = 1;
				break;
			}
			this->seconds = Experiment::parse_real(argv[i]);
			this->iterations = 0;
			if (this->seconds == 0) {
				error = 1;
				break;
			}
		} else if (strcasecmp(argv[i], "-l") == 0
				|| strcasecmp(argv[i], "--line") == 0) {
			i++;
			if (i == argc) {
				error = 1;
				break;
			}
			this->bytes_per_line = Experiment::parse_number(argv[i]);
			if (this->bytes_per_line == 0) {
				error = 1;
				break;
			}
		} else if (strcasecmp(argv[i], "-p") == 0
				|| strcasecmp(argv[i], "--page") == 0) {
			i++;
			if (i == argc) {
				error = 1;
				break;
			}
			this->bytes_per_page = Experiment::parse_number(argv[i]);
			if (this->bytes_per_page == 0) {
				error = 1;
				break;
			}
		} else if (strcasecmp(argv[i], "-c") == 0
				|| strcasecmp(argv[i], "--chain") == 0) {
			i++;
			if (i == argc) {
				error = 1;
				break;
			}
			this->bytes_per_chain = Experiment::parse_number(argv[i]);
			if (this->bytes_per_chain == 0) {
				error = 1;
				break;
			}
		} else if (strcasecmp(argv[i], "-r") == 0
				|| strcasecmp(argv[i], "--references") == 0) {
			i++;
			if (i == argc) {
				error = 1;
				break;
			}
			this->chains_per_thread = Experiment::parse_number(argv[i]);
			if (this->chains_per_thread == 0) {
				error = 1;
				break;
			}
		} else if (strcasecmp(argv[i], "-t") == 0
				|| strcasecmp(argv[i], "--threads") == 0) {
			i++;
			if (i == argc) {
				error = 1;
				break;
			}
			this->num_threads = Experiment::parse_number(argv[i]);
			if (this->num_threads == 0) {
				error = 1;
				break;
			}
		} else if (strcasecmp(argv[i], "-i") == 0
				|| strcasecmp(argv[i], "--iterations") == 0) {
			i++;
			if (i == argc) {
				error = 1;
				break;
			}
			this->iterations = Experiment::parse_number(argv[i]);
			this->seconds = 0;
			if (this->iterations == 0) {
				error = 1;
				break;
			}
		} else if (strcasecmp(argv[i], "-e") == 0
				|| strcasecmp(argv[i], "--experiments") == 0) {
			i++;
			if (i == argc) {
				error = 1;
				break;
			}
			this->experiments = Experiment::parse_number(argv[i]);
			if (this->experiments == 0) {
				error = 1;
				break;
			}
		} else if (strcasecmp(argv[i], "-g") == 0
				|| strcasecmp(argv[i], "--loop") == 0) {
			i++;
			if (i == argc) {
				error = 1;
				break;
			}
			this->loop_length = Experiment::parse_number(argv[i]);
			if (this->experiments == 0) {
				error = 1;
				break;
			}
		} else if (strcasecmp(argv[i], "-f") == 0
				|| strcasecmp(argv[i], "--prefetch") == 0) {
			i++;
			if (i == argc) {
				error = 1;
				break;
			}
			if (strcasecmp(argv[i], "none") == 0) {
				this->prefetch_hint = Experiment::NONE;
			} else if (strcasecmp(argv[i], "nta") == 0) {
				this->prefetch_hint = Experiment::NTA;
			} else if (strcasecmp(argv[i], "t0") == 0) {
				this->prefetch_hint = Experiment::T0;
			} else if (strcasecmp(argv[i], "t1") == 0) {
				this->prefetch_hint = Experiment::T1;
			} else if (strcasecmp(argv[i], "t2") == 0) {
				this->prefetch_hint = Experiment::T2;
			} else {
				error = 1;
				break;
			}
		} else if (strcasecmp(argv[i], "-a") == 0
				|| strcasecmp(argv[i], "--access") == 0) {
			i++;
			if (i == argc) {
				error = 1;
				break;
			}
			if (strcasecmp(argv[i], "random") == 0) {
				this->access_pattern = RANDOM;
			} else if (strcasecmp(argv[i], "forward") == 0) {
				this->access_pattern = STRIDED;
				i++;
				if (i == argc) {
					error = 1;
					break;
				}
				this->stride = Experiment::parse_number(argv[i]);
				if (this->stride == 0) {
					error = 1;
					break;
				}
			} else if (strcasecmp(argv[i], "reverse") == 0) {
				this->access_pattern = STRIDED;
				i++;
				if (i == argc) {
					error = 1;
					break;
				}
				this->stride = -Experiment::parse_number(argv[i]);
				if (this->stride == 0) {
					error = 1;
					break;
				}
			} else {
				error = 1;
				break;
			}
		} else if (strcasecmp(argv[i], "-o") == 0
				|| strcasecmp(argv[i], "--output") == 0) {
			i++;
			if (i == argc) {
				error = 1;
				break;
			}
			if (strcasecmp(argv[i], "table") == 0) {
				this->output_mode = TABLE;
			} else if (strcasecmp(argv[i], "csv") == 0) {
				this->output_mode = CSV;
			} else if (strcasecmp(argv[i], "both") == 0) {
				this->output_mode = BOTH;
			} else if (strcasecmp(argv[i], "hdr") == 0) {
				this->output_mode = HEADER;
			} else if (strcasecmp(argv[i], "header") == 0) {
				this->output_mode = HEADER;
			} else {
				error = 1;
				break;
			}
		} else if (strcasecmp(argv[i], "-n") == 0
				|| strcasecmp(argv[i], "--numa") == 0) {
			i++;
			if (i == argc) {
				error = 1;
				break;
			}
			if (strcasecmp(argv[i], "local") == 0) {
				this->numa_placement = LOCAL;
			} else if (strcasecmp(argv[i], "xor") == 0) {
				this->numa_placement = XOR;
				i++;
				if (i == argc) {
					error = 1;
					break;
				}
				this->offset_or_mask = Experiment::parse_number(argv[i]);
			} else if (strcasecmp(argv[i], "add") == 0) {
				this->numa_placement = ADD;
				i++;
				if (i == argc) {
					error = 1;
					break;
				}
				this->offset_or_mask = Experiment::parse_number(argv[i]);
			} else if (strcasecmp(argv[i], "map") == 0) {
				this->numa_placement = MAP;
				i++;
				if (i == argc) {
					error = 1;
					break;
				}
				this->placement_map = argv[i];
			} else {
				error = 1;
				break;
			}
		} else {
			error = 1;
			break;
		}
	}


	// if we've hit an error, print a message and quit
	if (error) {
		printf("usage: %s <options>\n", argv[0]);
		printf("where <options> are selected from the following:\n");
		printf("    [-h|--help]                    # this message\n");
		printf("    [-l|--line]        <number>    # bytes per cache line (cache line size)\n");
		printf("    [-p|--page]        <number>    # bytes per page (page size)\n");
		printf("    [-c|--chain]       <number>    # bytes per chain (used to compute pages per chain)\n");
		printf("    [-r|--references]  <number>    # chains per thread (memory loading)\n");
		printf("    [-t|--threads]     <number>    # number of threads (concurrency and contention)\n");
		printf("    [-i|--iterations]  <number>    # iterations per experiment\n");
		printf("    [-e|--experiments] <number>    # experiments\n");
		printf("    [-a|--access]      <pattern>   # memory access pattern\n");
		printf("    [-o|--output]      <format>    # output format\n");
		printf("    [-n|--numa]        <placement> # numa placement\n");
		printf("    [-s|--seconds]     <number>    # run each experiment for <number> seconds\n");
		printf("    [-g|--loop]        <number>    # cycles to execute for each iteration (latency hiding)\n");
		printf("    [-f|--prefetch]    <hint>      # use of prefetching\n");
		printf("    [-x|--strict]                  # fail rather than adjust options to sensible values\n");
		printf("\n");
		printf("<pattern> is selected from the following:\n");
		printf("    random                         # all chains are accessed randomly\n");
		printf("    forward <stride>               # chains are in forward order with constant stride\n");
		printf("    reverse <stride>               # chains are in reverse order with constant stride\n");
		printf("\n");
		printf("Note: <stride> is always a small positive integer.\n");
		printf("\n");
		printf("<format> is selected from the following:\n");
		printf("    hdr                            # csv header only\n");
		printf("    csv                            # results in csv format only\n");
		printf("    both                           # header and results in csv format\n");
		printf("    table                          # human-readable table of values\n");
		printf("\n");
		printf("<hint> is selected from the following:\n");
		printf("    none                           # do not use prefetching\n");
		printf("    nta                            # use the NTA hint (non-temporal, only used once)\n");
		printf("    t0                             # use the T0 hint (prefetch into all caches)\n");
		printf("    t1                             # use the T1 hint (prefetch into all caches except L1)\n");
		printf("    t2                             # use the T2 hint (prefetch into all caches except L1 & L2)\n");
		printf("\n");
		printf("<placement> is selected from the following:\n");
		printf("    local                          # all chains are allocated locally\n");
		printf("    xor <mask>                     # exclusive OR and mask\n");
		printf("    add <offset>                   # addition and offset\n");
		printf("    map <map>                      # explicit mapping of threads and chains to domains\n");
		printf("\n");
		printf("<map> has the form \"t1:c11,c12,...,c1m;t2:c21,...,c2m;...;tn:cn1,...,cnm\"\n");
		printf("where t[i] is the NUMA domain where the ith thread is run,\n");
		printf("and c[i][j] is the NUMA domain where the jth chain in the ith thread is allocated.\n");
		printf("(The values t[i] and c[i][j] must all be zero or small positive integers.)\n");
		printf("\n");
		printf("Note: for maps, each thread must have the same number of chains,\n");
		printf("maps override the -t or --threads specification,\n");
		printf("NUMA domains are whole numbers in the range of 0..N, and\n");
		printf("thread or chain domains that exceed the maximum NUMA domain\n");
		printf("are wrapped around using a MOD function.\n");
		printf("\n");
		printf("To determine the number of NUMA domains currently available\n");
		printf("on your system, use a command such as \"numastat\".\n");
		printf("\n");
		printf("Final note: strict is not yet fully implemented, and\n");
		printf("maps do not gracefully handle ill-formed map specifications.\n");

		return 1;
	}


	// STRICT -- fail if specifications are inconsistent

	// compute lines per page and lines per chain
	// based on input and defaults.
	// we round up page and chain sizes when needed.
    this->lines_per_page   = (this->bytes_per_page+this->bytes_per_line-1) / this->bytes_per_line;
    this->bytes_per_page   = this->bytes_per_line * this->lines_per_page;
    this->pages_per_chain  = (this->bytes_per_chain+this->bytes_per_page-1) / this->bytes_per_page;
    this->bytes_per_chain  = this->bytes_per_page * this->pages_per_chain;
    this->bytes_per_thread = this->bytes_per_chain * this->chains_per_thread;
    this->bytes_per_test   = this->bytes_per_thread * this->num_threads;
    this->links_per_line   = this->bytes_per_line / pointer_size;
    this->links_per_page   = this->lines_per_page * this->links_per_line;
    this->lines_per_chain  = this->lines_per_page * this->pages_per_chain;
    this->links_per_chain  = this->lines_per_chain * this->links_per_line;


	// allocate the chain roots for all threads
	// and compute the chain locations
	// (the chains themselves are initialized by the threads)
	switch (this->numa_placement) {
	case LOCAL:
	case XOR:
	case ADD:
		this->thread_domain = new int32[this->num_threads];
		this->chain_domain = new int32*[this->num_threads];
		this->random_state = new char*[this->num_threads];

		for (int i = 0; i < this->num_threads; i++) {
			this->chain_domain[i] = new int32[this->chains_per_thread];

			const int state_size = 256;
			this->random_state[i] = new char[state_size];
			initstate((unsigned int) i, (char *) this->random_state[i],
					(size_t) state_size);
		}
		break;
	}

#if defined(NUMA)
	this->numa_max_domain = numa_max_node();
	this->num_numa_domains = this->numa_max_domain + 1;
#endif

	switch (this->numa_placement) {
	case LOCAL:
	default:
		this->alloc_local();
		break;
	case XOR:
		this->alloc_xor();
		break;
	case ADD:
		this->alloc_add();
		break;
	case MAP:
		this->alloc_map();
		break;
	}

	return 0;
}

int64 Experiment::parse_number(const char* s) {
	int64 result = 0;

	int len = strlen(s);
	for (int i = 0; i < len; i++) {
		if ('0' <= s[i] && s[i] <= '9') {
			result = result * 10 + s[i] - '0';
		} else if (s[i] == 'k' || s[i] == 'K') {
			result = result << 10;
			break;
		} else if (s[i] == 'm' || s[i] == 'M') {
			result = result << 20;
			break;
		} else if (s[i] == 'g' || s[i] == 'G') {
			result = result << 30;
			break;
		} else if (s[i] == 't' || s[i] == 'T') {
			result = result << 40;
			break;
		} else {
			break;
		}
	}

	return result;
}

float Experiment::parse_real(const char* s) {
	float result = 0;
	bool decimal = false;
	float power = 1;

	int len = strlen(s);
	for (int i = 0; i < len; i++) {
		if ('0' <= s[i] && s[i] <= '9') {
			if (!decimal) {
				result = result * 10 + s[i] - '0';
			} else {
				power = power / 10;
				result = result + (s[i] - '0') * power;
			}
		} else if ('.' == s[i]) {
			decimal = true;
		} else {
			break;
		}
	}

	return result;
}

void Experiment::alloc_local() {
	for (int i = 0; i < this->num_threads; i++) {
		this->thread_domain[i] = i % this->num_numa_domains;
		for (int j = 0; j < this->chains_per_thread; j++) {
			this->chain_domain[i][j] = this->thread_domain[i];
		}
	}
}

void Experiment::alloc_xor() {
	for (int i = 0; i < this->num_threads; i++) {
		this->thread_domain[i] = i % this->num_numa_domains;
		for (int j = 0; j < this->chains_per_thread; j++) {
			this->chain_domain[i][j] = (this->thread_domain[i]
					^ this->offset_or_mask) % this->num_numa_domains;
		}
	}
}

void Experiment::alloc_add() {
	for (int i = 0; i < this->num_threads; i++) {
		this->thread_domain[i] = i % this->num_numa_domains;
		for (int j = 0; j < this->chains_per_thread; j++) {
			this->chain_domain[i][j] = (this->thread_domain[i]
					+ this->offset_or_mask) % this->num_numa_domains;
		}
	}
}

// DOES NOT HANDLE ILL-FORMED SPECIFICATIONS
void Experiment::alloc_map() {
	// STRICT -- fail if specifications are inconsistent

	// maps look like "t1:c11,c12,...,c1m;t2:c21,...,c2m;...;tn:cn1,...,cnm"
	// where t[i] is the thread domain of the ith thread,
	// and c[i][j] is the chain domain of the jth chain in the ith thread

	// count the thread descriptors by counting ";" up to EOS
	int threads = 1;
	char *p = this->placement_map;
	while (*p != '\0') {
		if (*p == ';')
			threads += 1;
		p++;
	}
	int thread_domain[threads];

	// count the chain descriptors by counting "," up to ";" or EOS
	int chains = 1;
	p = this->placement_map;
	while (*p != '\0') {
		if (*p == ';')
			break;
		if (*p == ',')
			chains += 1;
		p++;
	}
	int chain_domain[threads][chains];

	int t = 0, c = 0;
	p = this->placement_map;
	while (*p != '\0') {
		// everything up to ":" is the thread domain
		int i = 0;
		char buf[64];
		while (*p != '\0') {
			if (*p == ':') {
				p++;
				break;
			}
			buf[i] = *p;
			i++;
			p++;
		}
		buf[i] = '\0';
		thread_domain[t] = Experiment::parse_number(buf);

		// search for one or several ','
		c = 0;
		while (*p != '\0' && *p != ';') {
			if (chains <= c || threads <= t) {
				// error in the thread/chain specification
				fprintf(stderr, "Malformed map.\n");
				exit(1);
			}
			int i = 0;
			while (*p != '\0' && *p != ';') {
				if (*p == ',') {
					p++;
					break;
				}
				buf[i] = *p;
				i++;
				p++;
			}
			buf[i] = '\0';
			chain_domain[t][c] = Experiment::parse_number(buf);
			c++;
		}

		if (*p == '\0')
			break;
		if (*p == ';')
			p++;
		t++;
	}

	this->num_threads = threads;
	this->chains_per_thread = chains;

	this->thread_domain = new int32[this->num_threads];
	this->chain_domain = new int32*[this->num_threads];
	this->random_state = new char*[this->num_threads];

	for (int i = 0; i < this->num_threads; i++) {
		this->thread_domain[i] = thread_domain[i] % this->num_numa_domains;

		const int state_size = 256;
		this->random_state[i] = new char[state_size];
		initstate((unsigned int) i, (char *) this->random_state[i],
				(size_t) state_size);

		this->chain_domain[i] = new int32[this->chains_per_thread];
		for (int j = 0; j < this->chains_per_thread; j++) {
			this->chain_domain[i][j] = chain_domain[i][j]
					% this->num_numa_domains;
		}
	}

	this->bytes_per_thread = this->bytes_per_chain * this->chains_per_thread;
	this->bytes_per_test = this->bytes_per_thread * this->num_threads;
}

void Experiment::print() {
	printf("strict            = %s\n", strict?"yes":"no");
	printf("pointer_size      = %d\n", pointer_size);
	printf("sizeof(Chain)     = %d\n", sizeof(Chain));
	printf("sizeof(Chain *)   = %d\n", sizeof(Chain *));
	printf("bytes_per_line    = %d\n", bytes_per_line);
	printf("links_per_line    = %d\n", links_per_line);
	printf("bytes_per_page    = %d\n", bytes_per_page);
	printf("lines_per_page    = %d\n", lines_per_page);
	printf("links_per_page    = %d\n", links_per_page);
	printf("bytes_per_chain   = %d\n", bytes_per_chain);
	printf("lines_per_chain   = %d\n", lines_per_chain);
	printf("links_per_chain   = %d\n", links_per_chain);
	printf("pages_per_chain   = %d\n", pages_per_chain);
	printf("chains_per_thread = %d\n", chains_per_thread);
	printf("bytes_per_thread  = %d\n", bytes_per_thread);
	printf("num_threads       = %d\n", num_threads);
	printf("bytes_per_test    = %d\n", bytes_per_test);
	printf("loop length       = %d\n", loop_length);
	printf("prefetch hint     = %s\n", prefetch_hint_string(prefetch_hint));
	printf("iterations        = %d\n", iterations);
	printf("experiments       = %d\n", experiments);
	printf("access_pattern    = %d\n", access_pattern);
	printf("stride            = %d\n", stride);
	printf("output_mode       = %d\n", output_mode);
	printf("numa_placement    = %d\n", numa_placement);
	printf("offset_or_mask    = %d\n", offset_or_mask);
	printf("numa_max_domain   = %d\n", numa_max_domain);
	printf("num_numa_domains  = %d\n", num_numa_domains);

	for (int i = 0; i < this->num_threads; i++) {
		printf("%d: ", this->thread_domain[i]);
		for (int j = 0; j < this->chains_per_thread; j++) {
			printf("%d,", this->chain_domain[i][j]);
		}
		printf("\n");
	}

	fflush(stdout);
}

const char* Experiment::access() {
	const char* result = NULL;

	if (this->access_pattern == RANDOM) {
		result = "random";
	} else if (this->access_pattern == STRIDED && 0 < this->stride) {
		result = "forward";
	} else if (this->access_pattern == STRIDED && this->stride < 0) {
		result = "reverse";
	}

	return result;
}

const char* Experiment::placement() {
	const char* result = NULL;

	if (this->numa_placement == LOCAL) {
		result = "local";
	} else if (this->numa_placement == XOR) {
		result = "xor";
	} else if (this->numa_placement == ADD) {
		result = "add";
	} else if (this->numa_placement == MAP) {
		result = "map";
	}

	return result;
}