-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathrmamt_options.h
49 lines (38 loc) · 943 Bytes
/
rmamt_options.h
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
#if !defined(OPTIONS_H)
#define OPTIONS_H
#include <stdbool.h>
#define MAX_THREADS 512
#define RMAMT_MAX_SIZE (1 << 22)
enum {
RMAMT_PUT,
RMAMT_GET,
RMAMT_OPERATIONS_MAX,
};
extern char *rmamt_operation_strings[];
enum {
RMAMT_LOCK_ALL,
RMAMT_FENCE,
RMAMT_LOCK,
RMAMT_FLUSH,
RMAMT_PSCW,
RMAMT_ALL_FLUSH,
RMAMT_FLUSH_ALL,
RMAMT_FLUSH_LOCAL,
RMAMT_FLUSH_LOCAL_ALL,
RMAMT_SYNC_MAX,
};
extern char *rmamt_sync_strings[];
extern bool rmamt_win_per_thread;
extern bool rmamt_use_ibarrier;
extern int rmamt_threads;
extern int rmamt_iterations;
extern unsigned rmamt_sleep_interval;
extern int rmamt_sync;
extern int rmamt_operation;
extern unsigned long rmamt_max_size;
extern unsigned long rmamt_min_size;
extern bool rmamt_bind_threads;
extern char *rmamt_output_file;
extern bool rmamt_unique_displacements;
int rmamt_parse_options (const char *name, int argc, char *argv[]);
#endif /* !defined(OPTIONS_H) */