This repository has been archived by the owner on Apr 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathrun.sh
executable file
·307 lines (260 loc) · 11.1 KB
/
run.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
#!/bin/bash
# Copyright (C) 2021 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
function mach_info()
{
num_socks=$(lscpu | grep "Socket(s):" | awk '{print $NF}')
num_cores_per_sock=$(lscpu | grep "Core(s) per socket:" | awk '{print $NF}')
num_threads_per_core=$(lscpu | grep "Thread(s) per core:" | awk '{print $NF}')
ht_enabled=$( [ "$num_threads_per_core" -gt 1 ] && echo "true" || echo "false")
num_cores_total=$(($num_socks*$num_cores_per_sock))
num_numa_domains=$(numactl -H | grep "available:" | awk '{print $2}')
num_numa_domains_per_sock=$(($num_numa_domains/$num_socks))
num_cores_per_numa_domain=$(numactl -H | grep "node 0 cpus:" | awk -F ":" '{print $NF}' | awk '{print NF}')
num_cores_per_numa_domain=$(($num_cores_per_numa_domain/$num_threads_per_core))
l1_cache_size=$(cat /sys/devices/system/cpu/cpu0/cache/index0/size)
l1_cache_ways=$(cat /sys/devices/system/cpu/cpu0/cache/index0/ways_of_associativity)
l2_cache_size=$([ -f "/sys/devices/system/cpu/cpu0/cache/index2/size" ] && cat /sys/devices/system/cpu/cpu0/cache/index2/size)
l2_cache_ways=$([ -f "/sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity" ] && cat /sys/devices/system/cpu/cpu0/cache/index2/ways_of_associativity)
if [ -f "/sys/devices/system/cpu/cpu0/cache/index3/size" ]; then
l3_cache_size=$(cat /sys/devices/system/cpu/cpu0/cache/index3/size)
l3_cache_ways=$(cat /sys/devices/system/cpu/cpu0/cache/index3/ways_of_associativity)
# todo: make this robust
l3_cache_shared_cpu_count=$(cat /sys/devices/system/cpu/cpu0/cache/index3/shared_cpu_list | awk -F "," '{print $1}' | awk -F "-" '{print $NF}')
l3_cache_shared_cpu_count=$(($l3_cache_shared_cpu_count+1))
l3_cache_size_per_core=$(($(echo $l3_cache_size | tr -d "[:alpha:]")/$l3_cache_shared_cpu_count))
l3_cache_size_per_sock=$(($l3_cache_size_per_core*$num_cores_per_sock))
l3_cache_size_per_core+=" KB"
l3_cache_size_per_sock+=" KB"
fi
if [ "$EUID" -eq 0 ]; then
#todo: iterate over all md to verify homogenous config
md_size=$(dmidecode -t memory | grep "Memory Device" -A21 | grep -E 'Size:[[:space:]]*[[:digit:]]+' -m1)
md_type=$(dmidecode -t memory | grep "Memory Device" -A21 | grep -E 'Type:[[:space:]]*DDR' -m1 | awk '{print $NF}')
md_speed=$(dmidecode -t memory | grep "Memory Device" -A21 | grep -v "Configured Memory Speed" | grep -E 'Speed:[[:space:]]*[[:digit:]]+' -m1 | awk -F ":" '{print $NF}')
mem_vendor=$(dmidecode -t memory | grep "${md_size}" -m1 -A21 | grep -m1 "Manufacturer:" | awk '{print $NF}')
# md_configured_speed=$(dmidecode -t memory | grep "Memory Device" -A21 -m1 | grep -E 'Configured Clock Speed:' | awk -F ":" '{print $NF}')
# todo: add 'Locator' info and num_mem_channels_per_sock
num_mem_channels=$(dmidecode -t memory | grep -c "${md_size}")
size=$(echo $md_size | awk '{print $2}')
mem_size_total=$(($size*$num_mem_channels))
mem_size_total+=$(echo " $(echo $md_size | awk '{print $NF}')")
mem_speed=$md_speed
mem_type=$md_type
mem_size_per_dimm=$(echo $md_size | awk -F ":" '{print $NF}')
peak_mem_bw_system=$(echo "scale=2; (8 * $num_mem_channels * $(echo $mem_speed | tr -d "[:alpha:]|[:punct:]" ) / 1000)" | bc -l)
peak_mem_bw_per_sock=$(echo "scale=2; ($peak_mem_bw_system / $num_socks)" | bc -l)
else
memory_size_total=$(cat /proc/meminfo | grep "MemTotal" | awk '{printf ("%.2f GB",$2/1000/1000)}')
fi
model_name=$(lscpu | grep "Model name:" | awk -F ":" '{print $NF}' | tr -s "[:space:]")
os_name=$(cat /etc/os-release | grep "PRETTY_NAME" | awk -F "=" '{print $NF}' | tr -d "\"")
kernel_release=$(uname -r)
hostname=$(hostname -f)
thp=$( [ "$(grep -o "\[always\]" /sys/kernel/mm/*transparent_hugepage/enabled)" == "[always]" ] && echo "enabled" || echo "disabled")
icc_version=$(icc --version | head -n1)
if [ -f /sys/devices/system/cpu/intel_pstate/no_turbo ]; then
cpu_turbo=$( [ "$(cat /sys/devices/system/cpu/intel_pstate/no_turbo)" == 1 ] && echo "disabled" || echo "enabled")
elif [ -f /sys/devices/system/cpu/cpufreq/boost ]; then
cpu_turbo=$( [ "$(cat /sys/devices/system/cpu/cpufreq/boost)" == 1 ] && echo "enabled" || echo "disabled")
fi
cpu_scaling_governor=$(cat /sys/devices/system/cpu/cpu[0-9]*/cpufreq/scaling_governor | sort -u)
cpu_scaling_driver=$(cat /sys/devices/system/cpu/cpu[0-9]*/cpufreq/scaling_driver | sort -u)
lscpu_flags=$(lscpu | grep "Flags:")
if [ -z "${lscpu_flags}" ]; then
lscpu_flags=$(cat /proc/cpuinfo | grep -m1 "flags[[:space:]]*:")
fi
for isa in avx512f avx2 avx
do
echo ${lscpu_flags} | grep -w ${isa} &> /dev/null
if [ $? -eq 0 ]; then
target_cpu=${isa}
break
fi
done
}
function show_mach_info()
{
echo -e "\nCPU Model = $model_name"
echo -e "\nSockets/Cores/Threads:"
echo -e "\tnum_sockets = $num_socks"
echo -e "\tnum_cores_total = $num_cores_total"
echo -e "\tnum_cores_per_socket = $num_cores_per_sock"
echo -e "\tnum_threads_per_core = $num_threads_per_core"
echo -e "\tHyper-Threading = $ht_enabled"
echo -e "\nNUMA:"
echo -e "\tnum_numa_domains = $num_numa_domains"
echo -e "\tnum_numa_domains_per_socket = $num_numa_domains_per_sock"
echo -e "\tnum_cores_per_numa_domain = $num_cores_per_numa_domain"
if [ "$EUID" -eq 0 ]; then
echo -e "\nMemory:"
echo -e "\tmem_vendor = $mem_vendor"
echo -e "\tmem_speed = $mem_speed"
echo -e "\tmem_type = $mem_type"
echo -e "\tmem_size_total = $mem_size_total"
echo -e "\tmem_size_per_dimm = $mem_size_per_dimm"
echo -e "\tnum_mem_channels = $num_mem_channels"
echo -e "\tpeak_mem_bw_system = $peak_mem_bw_system GB/sec"
echo -e "\tpeak_mem_bw_per_sock = $peak_mem_bw_per_sock GB/sec"
else
echo -e "\nMemory = $memory_size_total"
fi
echo -e "\nCPU Caches:"
echo -e "\tL1_cache = $l1_cache_size (${l1_cache_ways}-way)"
echo -e "\tL2_cache = $l2_cache_size (${l2_cache_ways}-way)"
echo -e "\tL3_cache = $l3_cache_size (${l3_cache_ways}-way)"
echo -e "\tL3_cache_per_sock = $l3_cache_size_per_sock"
echo -e "\tL3_cache_per_core = $l3_cache_size_per_core"
echo -e "\nOS:"
echo -e "Operating System = $os_name"
echo -e "Kernel version = $kernel_release"
echo -e "CPU Turbo Boost = $cpu_turbo"
echo -e "CPU Scaling Governor = $cpu_scaling_governor"
echo -e "CPU Scaling Driver = $cpu_scaling_driver"
echo -e "Transparent Huge Pages = $thp"
echo ""
echo "ICC version = ${icc_version}"
echo "Target ISA = ${target_cpu}"
echo "Hostname = $(hostname -f)"
echo "Date = $(date)"
echo ""
}
function check_binary()
{
if [ "${target_cpu}" == "avx512f" ]; then
binary=stream_avx512.bin
elif [ "${target_cpu}" == "avx2" ]; then
binary=stream_avx2.bin
elif [ "${target_cpu}" == "avx" ]; then
binary=stream_avx.bin
else
echo "Unknown ISA, aborting.."
exit 1
fi
if [ ! -f ${binary} ]; then
echo "${binary} not found, aborting.."
exit 1
fi
objdump -D ${binary} | grep vmovntpd &> /dev/null
if [ $? -eq 0 ]; then
nt_stores_status=exist
stype=nt
else
nt_stores_status="does-not-exist"
stype=rfo
fi
# objdump -D ${binary} | grep memcpy &> /dev/null
# if [ $? -eq 0 ]; then
# memcpy_status=exist
# else
# memcpy_status="does-not-exist"
# fi
# objdump -D ${binary} | grep memset &> /dev/null
# if [ $? -eq 0 ]; then
# memset_status=exist
# else
# memset_status="does-not-exist"
# fi
echo "${binary} disassembly:" 2>&1 | tee -a $$-runinfo.log
echo "NT-Stores : ${nt_stores_status}" 2>&1 | tee -a $$-runinfo.log
# echo "Memcpy() : ${memcpy_status}" 2>&1 | tee -a $$-runinfo.log
# echo "Memset() : ${memset_status}" 2>&1 | tee -a $$-runinfo.log
}
function bench_simple()
{
l0_dir=$(echo ${model_name} | sed -E -e 's/ /-/g' -e 's/\(R\)|\@|\$|\%//g')
res_dir=${l0_dir}/${stype}
mkdir -p ${res_dir}
if [ "${ht_enabled}" == "true" ]; then
export KMP_AFFINITY=granularity=fine,compact,1,0
else
export KMP_AFFINITY=compact
fi
for t in ${num_cores_total}
do
export OMP_NUM_THREADS=$t
res_file=$(basename ${binary} .bin)_${t}t.log
echo "Running ${binary} with ${t} threads in compact affinity, output log will be saved in ${res_dir}/${res_file}"
cat $$-runinfo.log > ${res_dir}/${res_file}
./${binary} &>> ${res_dir}/${res_file}
done
rm $$-runinfo.log
}
function bench_sweep()
{
l0_dir=$(echo ${model_name} | sed -E -e 's/ /-/g' -e 's/\(R\)|\@|\$|\%//g')
l1_dir=nps-$num_numa_domains_per_sock
#uma runs
mkdir -p ${l0_dir}/${l1_dir}/uma
for aff in compact distribute
do
res_dir=${l0_dir}/${l1_dir}/uma/${aff}/${stype}
if [ "$aff" == "compact" ]; then
mkdir -p ${res_dir}
cp $$-runinfo.log ${res_dir}/runinfo.log
if [ "${ht_enabled}" == "true" ]; then
export KMP_AFFINITY=granularity=fine,verbose,compact,1,0
else
export KMP_AFFINITY=verbose,compact
fi
# for ((t=1;t<=${num_cores_total};t++));
for t in $(seq 1 ${num_cores_per_sock}) ${num_cores_total};
do
export OMP_NUM_THREADS=$t
res_file=$(basename ${binary} .bin)_${t}t.log
echo "Running ${binary} with ${t} threads in $aff pinning, output log will be saved in ${res_dir}/${res_file}"
cat $$-runinfo.log > ${res_dir}/${res_file}
./${binary} &>> ${res_dir}/${res_file}
done
elif [ "$aff" == "distribute" ]; then
unset KMP_AFFINITY
if [ "${num_numa_domains_per_sock}" == "1" ]; then
continue
fi
mkdir -p ${res_dir}
cp $$-runinfo.log ${res_dir}/runinfo.log
export OMP_PROC_BIND=spread
export KMP_HW_SUBSET=1s
for ((t=1;t<=${num_cores_per_sock};t++));
do
res_file=$(basename ${binary} .bin)_${t}t.log
echo "Running ${binary} with ${t} threads in $aff pinning, output log will be saved in ${res_dir}/${res_file}"
cat $$-runinfo.log > ${res_dir}/${res_file}
export OMP_NUM_THREADS=$t
./${binary} &>> ${res_dir}/${res_file}
done
fi
done
#numa runs (with compact affinity only)
res_dir=${l0_dir}/${l1_dir}/numa/compact/${stype}
mkdir -p ${res_dir}
if [ "${ht_enabled}" == "true" ]; then
export KMP_AFFINITY=granularity=fine,compact,1,0
else
export KMP_AFFINITY=compact
fi
unset OMP_PROC_BIND
unset KMP_HW_SUBSET
thread_list=(1 ${num_cores_per_numa_domain})
if [ "${num_cores_per_numa_domain}" != "${num_cores_per_sock}" ]; then
thread_list+=(${num_cores_per_sock})
fi
cp $$-runinfo.log ${res_dir}/runinfo.log
for t in ${thread_list[*]}
do
export OMP_NUM_THREADS=$t
for ((id=0;id<${num_numa_domains};id++));
do
res_file=$(basename ${binary} .bin)_${t}t_m${id}.log
echo "Running ${binary} with ${t} threads from numa-$id, output log will be saved in ${res_dir}/${res_file}"
cat $$-runinfo.log > ${res_dir}/${res_file}
numactl -m$id ./${binary} &>> ${res_dir}/${res_file}
done
done
rm $$-runinfo.log
}
mach_info
show_mach_info 2>&1 | tee $$-runinfo.log
check_binary
#bench_sweep
bench_simple