sync-overhead.sh 937 Bytes
Newer Older
Hejing Li's avatar
Hejing Li committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

# Runs low event workload (sleep 10) with Simbricks
# It will generate raw simulation json file result in out/
python3 run.py pyexps/ae/no_traffic.py --filter noTraf-gt-ib-sw-sleep --force --verbose

# Runs high event workload (dd) with Simbricks
# It will generate raw simulation json file result in out/
python3 run.py pyexps/ae/no_traffic.py --filter noTraf-gt-ib-sw-busy --force --verbose

# Runs high event workload (dd) without Simbricks (standalone gem5)
# It will generate raw simulation json file result in out/
python3 run.py pyexps/ae/no-simbricks.py --filter no_simb-gt-sleep --force --verbose

# Runs high event workload (dd) without Simbricks (standalone gem5)
# It will generate raw simulation json file result in out/
python3 run.py pyexps/ae/no-simbricks.py --filter no_simb-gt-busy --force --verbose



# Process the results and prints
python3 pyexps/ae/data_sync_overhead.py out/ > ae/sync_overhead.data