-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathtestcase_common.sh
More file actions
412 lines (361 loc) · 12.6 KB
/
testcase_common.sh
File metadata and controls
412 lines (361 loc) · 12.6 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
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
#!/bin/bash
declare -i success=0
declare -i inferenceError=1
declare -i verifyResError=2
function downloadDataWithVerifySource()
{
mkdir -p ${project_path}/data/
if [[ $(find ${project_path}/data -name ${data_name})"x" = "x" ]];then
wget -O ${project_path}/data/${data_name} ${data_source}${data_name} --no-check-certificate
if [ $? -ne 0 ];then
echo "download test data failed, please check Network."
return ${inferenceError}
fi
fi
if [[ ${verify_source}"x" != "x" ]];then
mkdir -p ${project_path}/verify_image/
if [[ $(find ${project_path}/verify_image -name ${verify_name})"x" = "x" ]];then
wget -O ${project_path}/verify_image/${verify_name} ${verify_source}${verify_name} --no-check-certificate
if [ $? -ne 0 ];then
echo "download verify data failed, please check Network."
return ${inferenceError}
fi
fi
fi
return ${success}
}
function downloadData2()
{
if [[ $(find ${project_path}/data -name ${data_name2})"x" = "x" ]];then
wget -O ${project_path}/data/${data_name2} ${data_source}${data_name2} --no-check-certificate
if [ $? -ne 0 ];then
echo "download test data failed, please check Network."
return ${inferenceError}
fi
fi
return ${success}
}
function downloadVerifySource2()
{
if [[ $(find ${project_path}/verify_image -name ${verify_name2})"x" = "x" ]];then
wget -O ${project_path}/verify_image/${verify_name2} ${verify_source}${verify_name2} --no-check-certificate
if [ $? -ne 0 ];then
echo "download test data failed, please check Network."
return ${inferenceError}
fi
fi
return ${success}
}
function setEnv() {
source /home/HwHiAiUser/.bashrc
source /home/HwHiAiUser/Ascend/ascend-toolkit/set_env.sh
}
function downloadOriginalModel() {
mkdir -p ${project_path}/model/
if [[ ${caffe_prototxt}"x" != "x" ]] && [[ ${caffe_model}"x" != "x" ]];then
wget -O ${project_path}/model/${caffe_prototxt##*/} ${caffe_prototxt} --no-check-certificate
if [ $? -ne 0 ];then
echo "install caffe_prototxt failed, please check Network."
return ${inferenceError}
fi
wget -O ${project_path}/model/${caffe_model##*/} ${caffe_model} --no-check-certificate
if [ $? -ne 0 ];then
echo "install caffe_model failed, please check Network."
return ${inferenceError}
fi
elif [[ ${tf_model}"x" != "x" ]];then
wget -O ${project_path}/model/${tf_model##*/} ${tf_model} --no-check-certificate
if [ $? -ne 0 ];then
echo "install tf_model failed, please check Network."
return ${inferenceError}
fi
elif [[ ${onnx_model}"x" != "x" ]];then
wget -O ${project_path}/model/${onnx_model##*/} ${onnx_model} --no-check-certificate
if [ $? -ne 0 ];then
echo "install onnx_model failed, please check Network."
return ${inferenceError}
fi
elif [[ ${mindspore_model}"x" != "x" ]];then
wget -O ${project_path}/model/${mindspore_model##*/} ${mindspore_model} --no-check-certificate
if [ $? -ne 0 ];then
echo "install onnx_model failed, please check Network."
return ${inferenceError}
fi
elif [[ ${json_model}"x" != "x" ]];then
wget -O ${project_path}/model/${json_model##*/} ${json_model} --no-check-certificate
if [ $? -ne 0 ];then
echo "install json_model failed, please check Network."
return ${inferenceError}
fi
else
echo "No model download link available, please confirm"
return ${inferenceError}
fi
if [[ ${aipp_cfg}"x" != "x" ]];then
wget -O ${project_path}/model/${aipp_cfg##*/} ${aipp_cfg} --no-check-certificate
if [ $? -ne 0 ];then
echo "download aipp_cfg failed, please check Network."
return ${inferenceError}
fi
fi
return ${success}
}
function modelconvert()
{
setEnv
mkdir -p ${HOME}/models/${project_name}
if [[ $(find ${HOME}/models/${project_name} -name ${model_name}".om")"x" = "x" ]];then
# 下载原始模型文件[aipp_cfg文件]
downloadOriginalModel
if [ $? -ne 0 ];then
return ${inferenceError}
fi
# 转模型
cd ${project_path}/model/
${model_atc}
if [ $? -ne 0 ];then
echo "ERROR: convert model failed"
return ${inferenceError}
fi
fi
if [[ $(find ${project_path}/model -name ${model_name}".om")"x" != "x" ]];then
rm ${project_path}/model/${model_name}".om"
fi
ln -s ${HOME}/models/${project_name}/${model_name}".om" ${project_path}/model/${model_name}".om"
if [ $? -ne 0 ];then
echo "ERROR: failed to set model soft connection"
return ${inferenceError}
fi
return ${success}
}
function buildproject()
{
setEnv
Kernel=`uname -m`
if [[ ${Kernel} = "x86_64" ]];then
TargetKernel="x86"
cxx_compiler="g++"
else
TargetKernel="arm"
cxx_compiler="aarch64-linux-gnu-g++"
fi
echo "cxx_compiler=${cxx_compiler}"
# 创建目录用于存放编译文件
mkdir -p ${project_path}/build/intermediates/host
if [ $? -ne 0 ];then
echo "ERROR: mkdir build folder failed. please check your project"
return ${inferenceError}
fi
cd ${project_path}/build/intermediates/host
# 产生Makefile
cmake ${project_path}/src -DCMAKE_CXX_COMPILER=${cxx_compiler} -DCMAKE_SKIP_RPATH=TRUE
if [ $? -ne 0 ];then
echo "ERROR: cmake failed. please check your project"
return ${inferenceError}
fi
make
if [ $? -ne 0 ];then
echo "ERROR: make failed. please check your project"
return ${inferenceError}
fi
return ${success}
}
function run_picture()
{
mkdir -p ${project_path}/out/output
# 运行程序
cd ${project_path}/out
${run_command}
if [ $? -ne 0 ];then
echo "ERROR: run failed. please check your project"
return ${inferenceError}
fi
# 调用python脚本判断本工程推理结果是否正常
for outimage in $(find ${project_path}/verify_image -name "*.jpg");do
tmp=`basename $outimage`
if [[ ! -d "${project_path}/out/output" ]];then
echo "ERROR: not find results folders!"
return ${verifyResError}
fi
for test_file in `find ${project_path}/out/output -name "*${tmp#*_}"`;do
python3.6 ${common_script_dir}/verify_result.py ${test_file} ${outimage}
if [ $? -ne 0 ];then
echo "ERROR: The result of reasoning is wrong!"
return ${verifyResError}
fi
done
done
echo "run success"
return ${success}
}
function run_picture_python()
{
# 运行程序
cd ${project_path}/src
${run_command}
if [ $? -ne 0 ];then
echo "ERROR: run failed. please check your project"
return ${inferenceError}
fi
# 调用python脚本判断本工程推理结果是否正常
for outimage in $(find ${project_path}/verify_image -name "*.jpg");do
tmp=`basename $outimage`
if [[ ! -d "${project_path}/out" ]];then
echo "ERROR: not find results folders!"
return ${verifyResError}
fi
for test_file in `find ${project_path}/out -name "*${tmp#*_}"`;do
python3.6 ${common_script_dir}/verify_result.py ${test_file} ${outimage}
if [ $? -ne 0 ];then
echo "ERROR: The result of reasoning is wrong!"
return ${verifyResError}
fi
done
done
echo "run success"
return ${success}
}
function run_presenter()
{
# 开启presenter server
cd ${common_script_dir}
bash run_presenter_server.sh ${script_path}/${conf_file_name}
if [ $? -ne 0 ];then
echo "ERROR: run presenter server failed. please check your project"
return ${inferenceError}
fi
sleep 2
# 运行程序
mv ${project_path}/out/main ${project_path}/out/${project_name}
cd ${project_path}/out/
${run_command} &
sleep 3
project_pid=`ps -ef | grep "${project_name}" | grep -v "grep" | awk -F ' ' '{print $2}'`
if [[ ${project_pid}"X" != "X" ]];then
echo -e "\033[33m kill existing project process: kill -9 ${project_pid}.\033[0m"
kill -9 ${project_pid}
if [ $? -ne 0 ];then
echo "ERROR: kill project process failed."
return ${inferenceError}
fi
presenter_server_pid=`ps -ef | grep "presenter_server\.py" | grep -v "grep" | awk -F ' ' '{print $2}'`
if [[ ${presenter_server_pid}"X" != "X" ]];then
echo -e "\033[33mNow do presenter server configuration, kill existing presenter process: kill -9 ${presenter_server_pid}.\033[0m"
kill -9 ${presenter_server_pid}
if [ $? -ne 0 ];then
echo "ERROR: kill presenter server process failed."
return ${inferenceError}
fi
fi
else
echo "ERROR: run failed. please check your project"
return ${inferenceError}
fi
echo "run success"
return ${success}
}
function run_presenter_python()
{
# 开启presenter server
cd ${common_script_dir}
bash run_presenter_server.sh ${script_path}/${conf_file_name}
if [ $? -ne 0 ];then
echo "ERROR: run presenter server failed. please check your project"
return ${inferenceError}
fi
sleep 2
# 运行程序
cd ${project_path}/src
${run_command} &
sleep 3
project_pid=`ps -ef | grep "${run_command}" | grep -v "grep" | awk -F ' ' '{print $2}'`
if [[ ${project_pid}"X" != "X" ]];then
echo -e "\033[33m kill existing project process: kill -9 ${project_pid}.\033[0m"
kill -9 ${project_pid}
if [ $? -ne 0 ];then
echo "ERROR: kill project process failed."
return ${inferenceError}
fi
presenter_server_pid=`ps -ef | grep "presenter_server\.py" | grep -v "grep" | awk -F ' ' '{print $2}'`
if [[ ${presenter_server_pid}"X" != "X" ]];then
echo -e "\033[33mNow do presenter server configuration, kill existing presenter process: kill -9 ${presenter_server_pid}.\033[0m"
kill -9 ${presenter_server_pid}
if [ $? -ne 0 ];then
echo "ERROR: kill presenter server process failed."
return ${inferenceError}
fi
fi
else
echo "ERROR: run failed. please check your project"
return ${inferenceError}
fi
echo "run success"
return ${success}
}
function run_md5()
{
mkdir -p ${project_path}/out/output
# 运行程序
cd ${project_path}/out
${run_command}
#if [ $? -ne 0 ];then
# echo "ERROR: run failed. please check your project"
# return ${inferenceError}
#fi
sleep 1
output_result=$(ls ${project_path}/out/output/${verify_name} 2>/dev/null)
verify_result=$(ls ${project_path}/verify_image/${verify_name} 2>/dev/null)
if [[ ${output_result}"x" = "x" ]] || [[ ${verify_result}"x" = "x" ]];then
echo "ERROR: verify failed. please check your project"
return ${verifyResError}
fi
result_md5=`md5sum ${project_path}/out/output/${verify_name} | cut -d " " -f1`
verify_md5=`md5sum ${project_path}/verify_image/${verify_name} | cut -d " " -f1`
if [[ ${result_md5} != ${verify_md5} ]];then
echo "ERROR: verify failed. please check your project"
return ${verifyResError}
fi
echo "run success"
return ${success}
}
function run_md5_python()
{
mkdir -p ${project_path}/out
# 运行程序
cd ${project_path}/src
${run_command}
sleep 1
output_result=$(ls ${project_path}/out/${verify_name} 2>/dev/null)
verify_result=$(ls ${project_path}/verify_image/${verify_name} 2>/dev/null)
if [[ ${output_result}"x" = "x" ]] || [[ ${verify_result}"x" = "x" ]];then
echo "ERROR: verify failed. please check your project"
return ${verifyResError}
fi
result_md5=`md5sum ${project_path}/out/${verify_name} | cut -d " " -f1`
verify_md5=`md5sum ${project_path}/verify_image/${verify_name} | cut -d " " -f1`
if [[ ${result_md5} != ${verify_md5} ]];then
echo "ERROR: verify failed. please check your project"
return ${verifyResError}
fi
echo "run success"
return ${success}
}
function run_txt()
{
mkdir -p ${project_path}/out/output
# 运行程序
cd ${project_path}/out
sleep 1
${run_command} > ${txt_file}
if [ $? -ne 0 ];then
echo "ERROR: run failed. please check your project"
return ${inferenceError}
fi
result=`diff -q ${txt_file} ${project_path}/verify_image/${verify_name}`
if [[ $result != "" ]]; then
echo "Error: The result of reasoning is wrong, Both file are different!"
return ${verifyResError}
fi
echo "run success"
return ${success}
}