forked from amargaritov/dynamorio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_asplos_smalltlb.sh
executable file
·118 lines (101 loc) · 2.5 KB
/
run_asplos_smalltlb.sh
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#!/bin/bash
if [ $# -lt 2 ]; then
echo "Usage: $0 --arch <arch> [--dry]"
exit 1
fi
# set -x
cd build
BENCHS=(
"graphbig_bfs"
"graphbig_cc"
# "graphbig_dc"
# "graphbig_dfs"
# "graphbig_pagerank"
# "graphbig_sssp"
# "graphbig_tc"
# "gups_8G"
# "sysbench_8G"
)
THPS=(
"never"
"always"
)
ARCH=""
dry_run="false"
while [[ $# -gt 0 ]]; do
key="$1"
case $key in
--arch)
if [[ $# -gt 1 ]]; then
ARCH="$2"
shift 2
else
echo "option for arch: radix ecpt"
exit 1
fi
;;
--dry)
dry_run="true"
shift 1
;;
--default)
DEFAULT=YES
shift # past argument
;;
*) # unknown option
POSITIONAL+=("$1") # save it in an array for later
shift # past argument
;;
esac
done
# mount parent directory of collect_trace_fast to /data1
# BIN_DIR="/start_point/hdd/collect_trace_fast"
# BIN_DIR="/start_point/data2/collect_trace_fast/radix"
BIN_DIRS=(
"/start_point/data1/collect_trace_fast/${ARCH}"
"/start_point/data2/collect_trace_fast/${ARCH}"
)
SIMULATOR_DIR=/dynamorio
# mkdir -p $OUTPUT_DIR
run_sim() {
bin_path=$1
dyna_log_path=$2
if test -f ${bin_path}; then
echo "bin64/drrun -t drcachesim -qemu_mem_trace ${bin_path} > ${dyna_log_path} 2>&1"
if [ "$dry_run" = "false" ]; then
$SIMULATOR_DIR/build/bin64/drrun -t drcachesim \
-qemu_mem_trace ${bin_path} \
-arch ${ARCH} \
-cores 1 \
-mmu_to_l2 \
-pwc_asplos_config \
-warmup_refs $((100 * 1000000)) \
-TLB_L1I_entries 64 \
-TLB_L1I_assoc 8 \
-TLB_L1D_entries 64 \
-TLB_L1D_assoc 4 \
-TLB_L2_entries 1024 \
-TLB_L2_assoc 8 \
-L1I_size $((32 * 1024)) \
-L1I_assoc 8 \
-L1D_size $((32 * 1024)) \
-L1D_assoc 8 \
-L2_size $(((512) * 1024)) \
-L2_assoc 8 \
-LL_size $((16 * 1024 * 1024)) \
-LL_assoc 16 \
>${dyna_log_path} 2>&1
fi
fi
}
for bench in "${BENCHS[@]}"; do
for thp in "${THPS[@]}"; do
for BIN_DIR in "${BIN_DIRS[@]}"; do
parent_path=${BIN_DIR}
prefix="${ARCH}_${thp}_${bench}"
run_sim ${parent_path}/${prefix}_walk_log.bin ${parent_path}/${prefix}_dyna_asplos_smalltlb_config.log &
sleep 0.1
done
done
done
wait