-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcpp-space-exp.json
More file actions
103 lines (101 loc) · 2.59 KB
/
cpp-space-exp.json
File metadata and controls
103 lines (101 loc) · 2.59 KB
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
{
"templates":
[
{
"match": { "config": "cpp-space", "procs": "(?!1$)" },
"template": "<procs?PARLAY_NUM_THREADS={}> /usr/bin/time -v numactl -i all -- bin/<bench>.<impl>.<config>.bin <args?{}> <args1?{}>"
},
{
"match": { "config": "cpp-space" },
"template": "<procs?PARLAY_NUM_THREADS={}> /usr/bin/time -v bin/<bench>.<impl>.<config>.bin <args?{}> <args1?{}>"
}
],
"globals":
{
"procs": ["1", "72"],
"config": ["cpp-space"],
"cwd": ["cpp-new"],
"args1": ["-repeat 1 -warmup 0"]
},
"specs":
[
{
"tag": ["mcss"],
"bench": ["mcss"],
"impl": ["array", "delay"],
"args": ["-n 500000000"]
},
{
"tag": ["bignum-add"],
"bench": ["bignum-add"],
"impl": ["array", "rad", "delay"],
"args": ["-n 500000000"]
},
{
"tag": ["integrate"],
"bench": ["integrate"],
"impl": ["array", "delay"],
"args": ["-n 500000000"]
},
{
"tag": ["linearrec"],
"bench": ["linearrec"],
"impl": ["array", "delay"],
"args": ["-n 500000000"]
},
{
"tag": ["linefit"],
"bench": ["linefit"],
"impl": ["array", "delay"],
"args": ["-n 500000000"]
},
{
"tag": ["primes"],
"bench": ["primes"],
"impl": ["array", "rad", "delay"],
"args": ["-n 100000000"]
},
{
"tag": ["quickhull"],
"bench": ["quickhull"],
"impl": ["array", "delay"],
"args": ["-infile /usr3/data/geom/2d/uniform-circle-20M"]
},
{
"tag": ["sparse-mxv"],
"bench": ["spmv"],
"impl": ["array", "delay"],
"args": ["-n 200000000"]
},
{
"tag": ["tokens"],
"bench": ["tokens"],
"impl": ["array", "rad", "delay"],
"args": ["-n 500000000"]
},
{
"tag": ["wc"],
"bench": ["wc"],
"impl": ["array", "delay"],
"args": ["-n 500000000"]
},
{
"tag": ["grep"],
"bench": ["grep"],
"impl": ["array", "delay"],
"args": ["-pattern ee -infile /usr0/home/swestric/proj/delayed-seq/inputs/sources4.txt"]
},
{
"tag": ["bfs"],
"bench": ["bfs"],
"impl": ["array", "rad", "delay"],
"args": ["-infile /usr0/home/swestric/data/graph/adj/rmat-10M-symm -source 0"]
},
{
"tag": ["bestcut"],
"bench": ["bestcut"],
"impl": ["array", "rad", "delay"],
"args": ["-n 200000000"]
}
]
}