forked from alibaba/MNN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.sh
executable file
·744 lines (707 loc) · 27.1 KB
/
test.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
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
# test script for MNN-Release
#
# 0. arg = local: [ test for your local build ]
# 1. unit-test;
# 2. model-test;
# 3. onnx convert test
# 4. tf convert test
# 5. tflite convert test
# 6. torch convert test
# 7. ptq test
# 8. pymnn test
#
# 1. arg = linux: [ all test on linux with coverage ]
# 0. static check (if source change)
# 1. pyc check (if *.py change)
# 2. build for linux;
# 3. unit-test;
# 4. model-test;
# 5. onnx convert test
# 6. tf convert test
# 7. tflite convert test
# 8. torch convert test
# 9. ptq test
# 10. pymnn test (if pymnn change)
# 11. opencv test (if opencv change)
# 12. convert-report;
#
# 2. arg = android: [ simple test on android ]
# 1. build Android with static_stl
# 2. build Android arm64
# 3. unit-test for Android arm64
# 4. build Android arm32
# 5. unit-test for Android arm32
# 0. build for android
USER_NAME=`whoami`
USER_HOME="$(echo -n $(bash -c "cd ~${USER_NAME} && pwd"))"
# detect change
SOURCE_CHANGE=$(git show --name-only | grep -E "^source/(internal|backend|core|common|cv|geometry|math|plugin|shape|utils)/.*\.(cpp|cc|c|hpp)$" | \
grep -Ev "aliyun-log-c-sdk|hiai|tensorrt|Backend|FunctionDispatcher|ThreadPool")
PYMNN_CHANGE=$(git show --name-only | grep -E "^pymnn/.*\.(cpp|cc|c|h|hpp|py)$")
PY_CHANGE=$(git show --name-only | grep -E "^pymnn/pip_package/MNN/.*\.(py)$")
OPENCV_CHANGE=$(git show --name-only | grep -E "^tools/cv/.*\.(cpp|cc|c|h|hpp)$")
# OPENCL_CHANGE=$(git show --name-only | grep -E "^source/backend/opencl/.*\.(cpp|cc|c|h|hpp)$")
OPENCL_CHANGE=true
failed() {
printf "TEST_NAME_EXCEPTION: Exception\nTEST_CASE_AMOUNT_EXCEPTION: {\"blocked\":0,\"failed\":1,\"passed\":0,\"skipped\":0}\n"
exit 1
}
#############################################################################################
# #
# Linux Test Functions #
# #
#############################################################################################
doc_check() {
echo 'doc_check'
# 1. CHECK CMakeLists.txt:
cmake_files=$(find tools source demo test benchmark -name "CMakeLists.txt")
cmake_files="$cmake_files CMakeLists.txt"
macros=''
executables=''
for cmake_file in $cmake_files
do
executables="$executables $(cat $cmake_file | grep -oE "add_executable\((.+) " | awk '{print $1}' | awk -F "(" '{print $2}')"
macros="$macros $(cat $cmake_file | grep -oE "option\((.+) " | awk '{print $1}' | awk -F "(" '{print $2}')"
done
# 1.1 check all macro
for macro in $macros
do
if [ $(grep -c $macro ./docs/compile/cmake.md) -le 0 ]; then
echo 'DOC CHECK FAILED:' $macro 'not in ./docs/compile/cmake.md'
failed
fi
done
# 1.2 check executable
for executable in $executables
do
if [ $(grep -c $executable ./docs/compile/other.md) -le 0 ]; then
echo 'DOC CHECK FAILED:' $executable 'not in ./docs/compile/other.md'
failed
fi
done
# 2. CHECK Pymnn API:
# 2.1 check cv api
cv_apis=$(cat pymnn/src/cv.h | grep -oE " .+, \".+\"" | awk '{ print $1 }' | awk -F ',' '{ print $1 }')
cv_apis="$cv_apis $(cat pymnn/pip_package/MNN/cv/__init__.py | grep -oE "def .+\(" | awk '{ print $2 }' | awk -F '(' '{print $1}' | grep -v "__")"
for cv_api in $cv_apis
do
if [ $(grep -c $cv_api ./docs/pymnn/cv.md) -le 0 ]; then
echo 'DOC CHECK FAILED:' $cv_api 'not in ./docs/pymnn/cv.md'
failed
fi
done
# 2.2 check numpy api
# np_apis=$(cat pymnn/pip_package/MNN/numpy/__init__.py | grep -oE "def .+\(" | grep -v "__" | awk '{ print $2 }' | awk -F '(' '{print $1}')
# for np_api in $np_apis
# do
# if [ $(grep -c $np_api ./docs/pymnn/numpy.md) -le 0 ]; then
# echo 'DOC CHECK FAILED:' $np_api 'not in ./docs/pymnn/numpy.md'
# # failed
# fi
# done
# 2.3 check expr api
expr_apis=$(cat pymnn/src/expr.h | grep -oE " [a-z_]+, \"" | awk '{ print $1 }' | awk -F ',' '{ print $1 }')
for expr_api in $expr_apis
do
if [ $(grep -c $expr_api ./docs/pymnn/expr.md) -le 0 ]; then
echo 'DOC CHECK FAILED:' $expr_api 'not in ./docs/pymnn/expr.md'
# failed
fi
done
# 3. CHECK C++ API:
# 3.1 check Interpreter
# 3.2 check Tensor
}
py_check() {
echo 'py_check'
if [ -z "$PY_CHANGE" ]; then
return
fi
pushd pymnn
./update_mnn_wrapper_assets.sh -c
pyc_check_wrong=$[$? > 0]
printf "TEST_NAME_PYC_CHECK: pyc资源文件校验\nTEST_CASE_AMOUNT_PYC_CHECK: {\"blocked\":0,\"failed\":%d,\"passed\":%d,\"skipped\":0}\n" \
$pyc_check_wrong $[1 - $pyc_check_wrong]
if [ $pyc_check_wrong -ne 0 ]; then
echo '### pyc资源文件校验失败,测试终止!'
failed
fi
popd
}
static_check() {
echo 'static_check'
if [ -z "$SOURCE_CHANGE" ]; then
return
fi
cppcheck --error-exitcode=1 --language=c++ --std=c++14 --addon=tools/script/mnn_rules.py $SOURCE_CHANGE 1> /dev/null
static_check_wrong=$[$? > 0]
printf "TEST_NAME_STATIC_CHECK: cppcheck静态分析\nTEST_CASE_AMOUNT_STATIC_CHECK: {\"blocked\":0,\"failed\":%d,\"passed\":%d,\"skipped\":0}\n" \
$static_check_wrong $[1 - $static_check_wrong]
if [ $static_check_wrong -ne 0 ]; then
echo '### cppcheck静态分析失败,测试终止!'
failed
fi
}
android_static_build() {
BASH_FILE="$USER_HOME/.zshrc"
if [ -f "$BASH_FILE" ]; then
source $BASH_FILE
fi
if [ ! $ANDROID_NDK ] || [ ! -d $ANDROID_NDK ]; then
export ANDROID_NDK="$USER_HOME/android-ndk-r21"
fi
mkdir android_build
pushd android_build
cmake .. \
-DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK/build/cmake/android.toolchain.cmake \
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
-DCMAKE_BUILD_TYPE=Release \
-DANDROID_ABI="arm64-v8a" \
-DANDROID_STL=c++_static \
-DMNN_INTERNAL=ON \
-DMNN_USE_LOGCAT=false \
-DMNN_BUILD_BENCHMARK=ON \
-DANDROID_NATIVE_API_LEVEL=android-21 \
-DMNN_BUILD_FOR_ANDROID_COMMAND=true \
-DMNN_OPENGL=true \
-DMNN_BUILD_TRAIN=true \
-DMNN_VULKAN=true \
-DMNN_OPENCL=true \
-DMNN_SUPPORT_BF16=true \
-DMNN_OPENCL=true -DMNN_ARM82=true \
-DMNN_SUPPORT_TRANSFORMER_FUSE=ON \
-DNATIVE_LIBRARY_OUTPUT=. -DNATIVE_INCLUDE_OUTPUT=. $1 $2 $3
make -j16
android_build_wrong=$[$? > 0]
printf "TEST_NAME_ANDROID_STATIC: AndroidStatic编译测试\nTEST_CASE_AMOUNT_ANDROID_STATIC: {\"blocked\":0,\"failed\":%d,\"passed\":%d,\"skipped\":0}\n" \
$android_build_wrong $[1 - $android_build_wrong]
if [ $android_build_wrong -ne 0 ]; then
echo '### AndroidStatic编译失败,测试终止!'
failed
fi
popd
mkdir android_build_32
pushd android_build_32
cmake .. \
-DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK/build/cmake/android.toolchain.cmake \
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
-DCMAKE_BUILD_TYPE=Release \
-DANDROID_ABI="armeabi-v7a" \
-DANDROID_STL=c++_shared \
-DMNN_USE_LOGCAT=false \
-DMNN_BUILD_BENCHMARK=ON \
-DMNN_INTERNAL=ON \
-DANDROID_NATIVE_API_LEVEL=android-21 \
-DMNN_BUILD_FOR_ANDROID_COMMAND=true \
-DMNN_OPENGL=true \
-DMNN_BUILD_TRAIN=true \
-DMNN_VULKAN=true \
-DMNN_OPENCL=true \
-DMNN_BUILD_MINI=true \
-DMNN_SUPPORT_BF16=true \
-DMNN_OPENCL=true \
-DMNN_SUPPORT_TRANSFORMER_FUSE=ON \
-DNATIVE_LIBRARY_OUTPUT=. -DNATIVE_INCLUDE_OUTPUT=.
make -j16
android_build_wrong=$[$? > 0]
printf "TEST_NAME_ANDROID_32: Android 32-Mini 编译测试\nTEST_CASE_AMOUNT_ANDROID_32: {\"blocked\":0,\"failed\":%d,\"passed\":%d,\"skipped\":0}\n" $android_build_wrong $[1 - $android_build_wrong]
if [ $android_build_wrong -ne 0 ]; then
echo '### Android编译失败,测试终止!'
failed
fi
popd
}
linux_build() {
if [ $# -gt 0 ]; then
COVERAGE=ON
else
COVERAGE=OFF
fi
mkdir build_non_sse
pushd build_non_sse
cmake .. -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DMNN_USE_SSE=OFF && make -j16
linux_build_wrong=$[$? > 0]
popd
mkdir build
pushd build
# copy libtorch avoid wget, speed up ci build
cp ~/libtorch-cxx11-abi-shared-with-deps-1.9.0+cpu.zip .
cmake .. \
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
-DCMAKE_BUILD_TYPE=Release \
-DMNN_BUILD_TEST=ON \
-DMNN_CUDA=ON \
-DMNN_OPENCL=ON \
-DMNN_BUILD_QUANTOOLS=ON \
-DMNN_BUILD_DEMO=ON \
-DMNN_BUILD_TRAIN=ON \
-DMNN_BUILD_CONVERTER=ON \
-DMNN_BUILD_TORCH=ON \
-DMNN_BUILD_OPENCV=ON \
-DMNN_LOW_MEMORY=ON \
-DMNN_IMGCODECS=ON \
-DMNN_SUPPORT_TRANSFORMER_FUSE=ON \
-DMNN_ENABLE_COVERAGE=$COVERAGE
make -j16
linux_build_wrong+=$[$? > 0]
printf "TEST_NAME_LINUX: Linux编译测试\nTEST_CASE_AMOUNT_LINUX: {\"blocked\":0,\"failed\":%d,\"passed\":%d,\"skipped\":0}\n" $linux_build_wrong $[2 - $linux_build_wrong]
if [ $linux_build_wrong -ne 0 ]; then
echo '### Linux编译失败,测试终止!'
failed
fi
# Don't remove this! It turn off MNN_CUDA and MNN_TENSORRT in build, workaround some bug in PTQTest
cmake .. -DMNN_CUDA=OFF -DMNN_TENSORRT=OFF && make -j16
}
unit_test() {
./run_test.out
if [ $? -ne 0 ]; then
echo '### 单元测试失败,测试终止!'
failed
fi
./run_test.out op 0 0 4
if [ $? -ne 0 ]; then
echo '### 多线程单元测试失败,测试终止!'
failed
fi
if [ "$OPENCL_CHANGE" ]; then
./run_test.out op 3 1 4
if [ $? -ne 0 ]; then
echo '### OpenCL单元测试失败,测试终止!'
failed
fi
fi
}
model_test() {
../tools/script/modelTest.py ~/AliNNModel 0 0.002
if [ $? -ne 0 ]; then
echo '### 模型测试失败,测试终止!'
failed
fi
../tools/script/modelTest.py ~/AliNNModel 0 0.002 0 1
if [ $? -ne 0 ]; then
echo '### 静态模型测试失败,测试终止!'
failed
fi
if [ "$OPENCL_CHANGE" ]; then
../tools/script/modelTest.py ~/AliNNModel 3 0.002 1
if [ $? -ne 0 ]; then
echo '### OpenCL模型测试失败,测试终止!'
failed
fi
fi
}
onnx_convert_test() {
../tools/script/convertOnnxTest.py ~/AliNNModel
if [ $? -ne 0 ]; then
echo '### ONNXConvert测试失败,测试终止!'
failed
fi
}
tf_convert_test() {
../tools/script/convertTfTest.py ~/AliNNModel
if [ $? -ne 0 ]; then
echo '### TFConvert测试失败,测试终止!'
failed
fi
}
tflite_convert_test() {
../tools/script/convertTfliteTest.py ~/AliNNModel
if [ $? -ne 0 ]; then
echo '### TFLITEConvert测试失败,测试终止!'
failed
fi
}
torch_convert_test() {
../tools/script/convertTorchTest.py ~/AliNNModel
if [ $? -ne 0 ]; then
echo '### TORCHConvert测试失败,测试终止!'
failed
fi
}
ptq_test() {
../tools/script/testPTQ.py ~/AliNNModel
if [ $? -ne 0 ]; then
echo '### PTQ测试失败,测试终止!'
failed
fi
}
pymnn_test() {
if [ -z "$PYMNN_CHANGE" ]; then
return
fi
popd
pushd pymnn
# 1. build pymnn
pushd pip_package
python3 build_deps.py
# uninstall original MNN
pip uninstall --yes MNN MNN-Internal
python3 setup.py install --version 1.0 --install-lib=/usr/lib/python3/dist-packages
pymnn_build_wrong=$[$? > 0]
printf "TEST_NAME_PYMNN_BUILD: PYMNN编译测试\nTEST_CASE_AMOUNT_PYMNN_BUILD: {\"blocked\":0,\"failed\":%d,\"passed\":%d,\"skipped\":0}\n" \
$pymnn_build_wrong $[1 - $pymnn_build_wrong]
if [ $pymnn_build_wrong -ne 0 ]; then
echo '### PYMNN编译失败,测试终止!'
failed
fi
popd
# 2. unit test
pushd test
python3 unit_test.py
if [ $? -ne 0 ]; then
echo '### PYMNN单元测试失败,测试终止!'
failed
fi
# 3. model test
python3 model_test.py ~/AliNNModel
if [ $? -ne 0 ]; then
echo '### PYMNN模型测试失败,测试终止!'
failed
fi
# 4. train test
./train_test.sh
# 5. quant test
python3 ../examples/MNNQuant/test_mnn_offline_quant.py \
--mnn_model ~/AliNNModel/TestQuant/mobilenet_v2_tfpb_train_withBN.mnn \
--quant_imgs ~/AliNNModel/TestQuant/quant_imgs \
--quant_model ./quant_model.mnn
rm ./quant_model.mnn
quant_wrong=$[$? > 0]
printf "TEST_NAME_QUANT_TEST: pymnn量化测试\nTEST_CASE_AMOUNT_QUANT_TEST: {\"blocked\":0,\"failed\":%d,\"passed\":%d,\"skipped\":0}\n" \
$quant_wrong $[1 - $quant_wrong]
# 6. uninstall pymnn
pip uninstall --yes MNN-Internal
popd
popd
pushd build
}
opencv_test() {
if [ -z "$OPENCV_CHANGE" ]; then
return
fi
# 1. build opencv-test
cmake -DMNN_OPENCV_TEST=ON ..
make -j8
opencv_build_wrong=$[$? > 0]
printf "TEST_NAME_OPENCV_BUILD: OPENCV编译测试\nTEST_CASE_AMOUNT_OPENCV_BUILD: {\"blocked\":0,\"failed\":%d,\"passed\":%d,\"skipped\":0}\n" \
$opencv_build_wrong $[1 - $opencv_build_wrong]
if [ $opencv_build_wrong -ne 0 ]; then
echo '### OPENCV编译失败,测试终止!'
failed
fi
# 2. run opencv unit test
./opencv_test
if [ $? -gt 0 ]; then
echo '### OPENCV单元测试失败,测试终止!'
failed
fi
}
llm_test() {
# 1. build llm with low memory
cmake -DMNN_LOW_MEMORY=ON -DMNN_BUILD_LLM=ON -DMNN_SUPPORT_TRANSFORMER_FUSE=ON ..
make -j8
llm_build_wrong=$[$? > 0]
printf "TEST_NAME_LLM_BUILD: LLM编译测试\nTEST_CASE_AMOUNT_LLM_BUILD: {\"blocked\":0,\"failed\":%d,\"passed\":%d,\"skipped\":0}\n" \
$llm_build_wrong $[1 - $llm_build_wrong]
if [ $llm_build_wrong -ne 0 ]; then
echo '### LLM编译失败,测试终止!'
failed
fi
# 2. run llm model test
./llm_demo ~/AliNNModel/qwen1.5-0.5b-int4/config.json ~/AliNNModel/qwen1.5-0.5b-int4/prompt.txt
if [ $? -gt 0 ]; then
echo '### LLM模型测试失败,测试终止!'
failed
fi
}
coverage_init() {
popd
lcov -c -i -d ./ -o init.info
pushd build
}
coverage_report() {
popd
cover_report_dir="../../../../CoverageReport"
lcov -c -d ./ -o cover.info
lcov -a init.info -a cover.info -o total.info
lcov --remove total.info \
'*/usr/include/*' '*/usr/lib/*' '*/usr/lib64/*' '*/usr/local/*' \
'*/3rd_party/*' '*/build/*' '*/schema/*' '*/test/*' '/tmp/*' \
'*/demo/*' '*/tools/cpp/*' '*/tools/train/*' '*/source/backend/cuda/*' \
-o final.info
commitId=$(git log | head -n1 | awk '{print $2}')
genhtml -o cover_report --legend --title "MNN Coverage Report [commit SHA1:${commitId}]" --prefix=`pwd` final.info
coverage_wrong=$[$? > 0]
printf "TEST_NAME_COVERAGE: 代码覆盖率(点击\"通过\"查看报告)\nTEST_CASE_AMOUNT_COVERAGE: {\"blocked\":0,\"failed\":%d,\"passed\":%d,\"skipped\":0}\n" $coverage_wrong $[1 - $coverage_wrong]
if [ $coverage_wrong -ne 0 ]; then
echo '### 代码覆盖率生成失败,测试终止!'
failed
else
hostIp=$(cat .aoneci.yml | grep host -m 1 | awk '{print $2}')
testId=$(pwd | awk -F "/" '{print $(NF-1)}')
mv cover_report $cover_report_dir/$testId
echo "TEST_REPORT_COVERAGE: http://$hostIp/$testId"
fi
# clean test dir
cd ../.. && rm -rf $testId
}
#############################################################################################
# #
# Android Test Functions #
# #
#############################################################################################
android_unit_test() {
memory_mode=$2
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./run_test.out all 0 0 1 $1 $memory_mode"
if [ $? -ne 0 ]; then
echo '### Android单元测试失败,测试终止!'
failed
fi
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./run_test.out op 0 0 4 multi$1 $memory_mode"
if [ $? -ne 0 ]; then
echo '### Android单元测试多线程失败,测试终止!'
failed
fi
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./run_test.out op/convolution 0 2 4 fp16multi$1 $memory_mode"
if [ $? -ne 0 ]; then
echo '### Android单元测试卷积FP16多线程失败,测试终止!'
failed
fi
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./run_test.out op/col2im 0 2 4 fp16col2im$1 $memory_mode"
if [ $? -ne 0 ]; then
echo '### Android单元测试FP16-col2im多线程失败,测试终止!'
failed
fi
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./run_test.out op/R 0 2 4 fp16roipooling$1 $memory_mode"
if [ $? -ne 0 ]; then
echo '### Android单元测试FP16-roipooling多线程失败,测试终止!'
failed
fi
if [ "$OPENCL_CHANGE" ]; then
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./run_test.out op 3 1 4 $1 $memory_mode"
if [ $? -ne 0 ]; then
echo '### Android单元测试OpenCL失败,测试终止!'
failed
fi
fi
}
android_model_test() {
fail_num=0
pass_num=0
fail_cl_num=0
pass_cl_num=0
models=`adb shell ls /data/local/tmp/AliNNModel/OpTestResource/`
for model in $models
do
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./testModel.out ../AliNNModel/OpTestResource/$model/temp.bin ../AliNNModel/OpTestResource/$model/input_0.txt ../AliNNModel/OpTestResource/$model/output_0.txt 0 0.002"
if [ $? -ne 0 ]; then
fail_num=$[$fail_num+1]
else
pass_num=$[$pass_num+1]
fi
if [ "$OPENCL_CHANGE" ]; then
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./testModel.out ../AliNNModel/OpTestResource/$model/temp.bin ../AliNNModel/OpTestResource/$model/input_0.txt ../AliNNModel/OpTestResource/$model/output_0.txt 3 0.002 1"
if [ $? -ne 0 ]; then
fail_cl_num=$[$fail_cl_num+1]
else
pass_cl_num=$[$pass_cl_num+1]
fi
fi
done
models=`adb shell ls /data/local/tmp/AliNNModel/TestResource/`
for model in $models
do
if [ $model == 'mobilenetv1quan' ]; then
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./testModel.out ../AliNNModel/TestResource/$model/temp.bin ../AliNNModel/TestResource/$model/input_0.txt ../AliNNModel/TestResource/$model/output.txt 0 0.1"
else
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./testModel.out ../AliNNModel/TestResource/$model/temp.bin ../AliNNModel/TestResource/$model/input_0.txt ../AliNNModel/TestResource/$model/output.txt 0 0.002"
fi
if [ $? -ne 0 ]; then
fail_num=$[$fail_num+1]
else
pass_num=$[$pass_num+1]
fi
if [ "$OPENCL_CHANGE" ]; then
if [ $model == 'mobilenetv1quan' ]; then
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./testModel.out ../AliNNModel/TestResource/$model/temp.bin ../AliNNModel/TestResource/$model/input_0.txt ../AliNNModel/TestResource/$model/output.txt 3 0.1 1"
else
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./testModel.out ../AliNNModel/TestResource/$model/temp.bin ../AliNNModel/TestResource/$model/input_0.txt ../AliNNModel/TestResource/$model/output.txt 3 0.002 1"
fi
if [ $? -ne 0 ]; then
fail_cl_num=$[$fail_cl_num+1]
else
pass_cl_num=$[$pass_cl_num+1]
fi
fi
done
models=`adb shell ls /data/local/tmp/AliNNModel/TestWithDescribe/`
for model in $models
do
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./testModelWithDescribe.out ../AliNNModel/TestWithDescribe/$model/temp.bin ../AliNNModel/TestWithDescribe/$model/config.txt 0 0.002"
if [ $? -ne 0 ]; then
fail_num=$[$fail_num+1]
else
pass_num=$[$pass_num+1]
fi
if [ "$OPENCL_CHANGE" ]; then
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./testModelWithDescribe.out ../AliNNModel/TestWithDescribe/$model/temp.bin ../AliNNModel/TestWithDescribe/$model/config.txt 3 0.002 1"
if [ $? -ne 0 ]; then
fail_cl_num=$[$fail_cl_num+1]
else
pass_cl_num=$[$pass_cl_num+1]
fi
fi
done
printf "TEST_NAME_ANDROID_MODEL_TEST_$1: Android_$1模型测试\nTEST_CASE_AMOUNT_ANDROID_MODEL_TEST_$1: {\"blocked\":0,\"failed\":$fail_num,\"passed\":$pass_num,\"skipped\":0}\n"
if [ $fail_num -ne 0 ]; then
echo '### Android模型测试失败,测试终止!'
failed
fi
if [ "$OPENCL_CHANGE" ]; then
printf "TEST_NAME_ANDROID_MODEL_OPENCL_TEST_$1: Android_$1模型测试\nTEST_CASE_AMOUNT_ANDROID_MODEL_TEST_$1: {\"blocked\":0,\"failed\":$fail_cl_num,\"passed\":$pass_cl_num,\"skipped\":0}\n"
if [ $fail_cl_num -ne 0 ]; then
echo '### Android OpenCL后端模型测试失败,测试终止!'
failed
fi
fi
}
android_unit_test_low_memory_armv8() {
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./run_test.out op/lowMemory 0 1 1 $1 2"
if [ $? -ne 0 ]; then
echo '### Android 64位Low Memory,动态量化, precision=1, thread=1 单元测试失败,测试终止!'
failed
fi
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./run_test.out op/lowMemory 0 2 1 $1 2"
if [ $? -ne 0 ]; then
echo '### Android 64位Low Memory,动态量化, precision=2, thread=1 单元测试失败,测试终止!'
failed
fi
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./run_test.out op/lowMemory 0 1 4 $1 2"
if [ $? -ne 0 ]; then
echo '### Android 64位Low Memory,动态量化, precision=1, thread=4 单元测试失败,测试终止!'
failed
fi
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./run_test.out op/lowMemory 0 2 4 $1 2"
if [ $? -ne 0 ]; then
echo '### Android 64位Low Memory,动态量化, precision=2, thread=4 单元测试失败,测试终止!'
failed
fi
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./run_test.out op/lowMemory 0 1 1 $1"
if [ $? -ne 0 ]; then
echo '### Android 64位Low Memory 权重反量化, precision=1 单元测试失败,测试终止!'
failed
fi
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./run_test.out op/lowMemory 0 2 1 $1"
if [ $? -ne 0 ]; then
echo '### Android 64位Low Memory 权重反量化, precision=2 单元测试失败,测试终止!'
failed
fi
}
android_unit_test_low_memory_armv7() {
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./run_test.out op/lowMemory 0 1 1 $1 2"
if [ $? -ne 0 ]; then
echo '### Android 32位Low Memory,动态量化, precision=1, thread=1 单元测试失败,测试终止!'
failed
fi
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./run_test.out op/lowMemory 0 2 1 $1 2"
if [ $? -ne 0 ]; then
echo '### Android 32位Low Memory,动态量化, precision=2, thread=1 单元测试失败,测试终止!'
failed
fi
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./run_test.out op/lowMemory 0 1 4 $1 2"
if [ $? -ne 0 ]; then
echo '### Android 32位Low Memory,动态量化, precision=1, thread=4 单元测试失败,测试终止!'
failed
fi
adb shell "cd /data/local/tmp/MNN&&export LD_LIBRARY_PATH=.&&./run_test.out op/lowMemory 0 2 4 $1 2"
if [ $? -ne 0 ]; then
echo '### Android 32位Low Memory,动态量化, precision=2, thread=4 单元测试失败,测试终止!'
failed
fi
}
android_test() {
pushd project/android
# 1. build Android32
mkdir build_32
pushd build_32
../build_32.sh -DMNN_BUILD_TRAIN=OFF -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DMNN_OPENCL=true -DMNN_LOW_MEMORY=ON -DMNN_SUPPORT_TRANSFORMER_FUSE=ON
android32_build_wrong=$[$? > 0]
mnn32_size=$(ls -lh libMNN.so | awk '{print $5}')
expr32_size=$(ls -lh libMNN_Express.so | awk '{print $5}')
printf "TEST_NAME_ANDROID_32: Android32编译测试(libMNN.so - %s, libMNN_Express.so - %s)\nTEST_CASE_AMOUNT_ANDROID_32: {\"blocked\":0,\"failed\":%d,\"passed\":%d,\"skipped\":0}\n" \
$mnn32_size $expr32_size $android32_build_wrong $[1 - $android32_build_wrong]
if [ $android32_build_wrong -ne 0 ]; then
echo '### Android32编译失败,测试终止!'
failed
fi
../updateTest.sh
android_unit_test 32bit 1
android_unit_test_low_memory_armv7 32bit
android_model_test 32
popd
# 3. build Android64
mkdir build_64
pushd build_64
../build_64.sh -DMNN_BUILD_TRAIN=OFF -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DMNN_ARM82=true -DMNN_OPENCL=true -DMNN_LOW_MEMORY=true -DMNN_SUPPORT_TRANSFORMER_FUSE=ON
android64_build_wrong=$[$? > 0]
mnn64_size=$(ls -lh libMNN.so | awk '{print $5}')
expr64_size=$(ls -lh libMNN_Express.so | awk '{print $5}')
printf "TEST_NAME_ANDROID_64: Android64编译测试(libMNN.so - %s, libMNN_Express.so - %s)\nTEST_CASE_AMOUNT_ANDROID_64: {\"blocked\":0,\"failed\":%d,\"passed\":%d,\"skipped\":0}\n" \
$mnn64_size $expr64_size $android64_build_wrong $[1 - $android64_build_wrong]
if [ $android64_build_wrong -ne 0 ]; then
echo '### Android64编译失败,测试终止!'
failed
fi
# 4. test Android64
../updateTest.sh
android_unit_test 64 0
android_unit_test_low_memory_armv8 64
android_model_test 64
popd
popd
}
case "$1" in
local)
pushd build
unit_test
model_test
onnx_convert_test
tf_convert_test
tflite_convert_test
torch_convert_test
ptq_test
pymnn_test
;;
linux)
doc_check
static_check
py_check
linux_build 1
coverage_init
unit_test
model_test
onnx_convert_test
tf_convert_test
tflite_convert_test
torch_convert_test
ptq_test
pymnn_test
opencv_test
llm_test
coverage_report
;;
android)
android_static_build
android_test
;;
static)
doc_check
static_check
py_check
;;
*)
$1
echo $"Usage: $0 {local|linux|android|func}"
exit 2
esac
exit $?