-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
39 lines (38 loc) · 1.41 KB
/
Copy pathconfig.json
File metadata and controls
39 lines (38 loc) · 1.41 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
{
"meta": {
"context": "
import random \n
"
},
"common": {
"project_root": "/home/wubi/gem5-stable_2015_09_03",
"exec": "<% project_root %>/build/ALPHA/gem5.opt",
"parsec_script": "<% project_root %>/configs/example/fs.py",
"py_script": "<% parsec_script %>",
"_debug_flags": "--debug-flags=Cache",
"parsec_benchs": ["blackscholes", "bodytrack", "canneal", "dedup", "facesim", "ferret", "fluidanimate", "freqmine", "streamcluster", "swaptions", "vips", "x264", "rtview"],
"bench_flags": "",
"warm_instr": 200000000,
"instr_num": 50000000,
"bench_marks": "<% parsec_benchs %>",
"flags": "--cpu-type=detailed --cpu-clock=3.3GHz --mem-size=1GB --caches --l1i_size=128kB --l1d_size=128kB --l2cache --l2mram --l2_size=16MB --l2_assoc=8 --l1-write-buffers=<% write_buffers %> --l2-enable-bank --l2-num-banks=<% bank_num %>",
"cpu_num": "<% [1, 4, 8] %>",
"write_buffers": [1, 2, 4, 8],
"bank_num": 64,
"parsec_type": "simlarge"
},
"config": {
"Word": {
"cfg_flags": "--l2mram-write-mode=Word"
},
"Normal": {
"cfg_flags": "--l2mram-write-mode=Normal"
},
"ReadBeforeWrite": {
"cfg_flags": "--l2mram-write-mode=ReadBeforeWrite"
},
"Line": {
"cfg_flags": "--l2mram-write-mode=Line"
}
}
}