-
Notifications
You must be signed in to change notification settings - Fork 0
/
localhost.nebula
48 lines (48 loc) · 2.14 KB
/
localhost.nebula
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
# Sample Nebula script
# performance cores (Tangelo)
service ../../pipelines/tangelo/implementation/regfile.py:localhost:22:0:3
service ../../pipelines/tangelo/implementation/brpred.py:localhost:22:0:3
service ../../pipelines/tangelo/implementation/fetch.py:localhost:22:0:3
service ../../pipelines/tangelo/implementation/decode.py:localhost:22:0:3
service ../../pipelines/tangelo/implementation/issue.py:localhost:22:0:3
service ../../pipelines/tangelo/implementation/alu.py:localhost:22:0:3
service ../../pipelines/tangelo/implementation/lsu.py:localhost:22:0:3
service ../../pipelines/tangelo/implementation/commit.py:localhost:22:0:3
service ../../pipelines/tangelo/implementation/l2.py:localhost:22:-1:-1:"--cores 0-1 --next l3"
service ../../pipelines/tangelo/implementation/l2.py:localhost:22:-1:-1:"--cores 2-3 --next l3"
service ../../pipelines/tangelo/implementation/l3.py:localhost:22:-1:-1:"--cores 0-3 --next mem"
service ../../pipelines/tangelo/implementation/watchdog.py:localhost:22:0:3
# efficiency cores (Bergamot)
service ../../pipelines/bergamot/implementation/simplecore.py:localhost:22:4:7
service ../../pipelines/bergamot/implementation/regfile.py:localhost:22:4:7
service ../../pipelines/bergamot/implementation/decode.py:localhost:22:4:7
service ../../pipelines/bergamot/implementation/execute.py:localhost:22:4:7
service ../../pipelines/bergamot/implementation/watchdog.py:localhost:22:4:7
spawn
config brpred:btac_entries 32
config brpred:predictor_type bimodal
config brpred:predictor_entries 32
config fetch:l1ic_nsets 32
config fetch:l1ic_nways 1
config fetch:l1ic_nbytesperblock 16
config fetch:l1ic_evictionpolicy lru # random
config decode:max_bytes_to_decode 16
config alu:result_forwarding True
config lsu:l1dc_nsets 16
config lsu:l1dc_nways 2
config lsu:l1dc_nbytesperblock 16
config lsu:l1dc_evictionpolicy lru # random
config l2:nsets 16
config l2:nways 8
config l2:nbytesperblock 16
config l2:evictionpolicy lru # random
config l2:hitlatency 5
config l3:nsets 64
config l3:nways 8
config l3:nbytesperblock 32
config l3:evictionpolicy lru # random
config l3:hitlatency 25
config watchdog:result_name retire
config watchdog:result_cycles 10000
run
shutdown