You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.0 KiB
25 lines
1.0 KiB
#!/bin/bash
|
|
# bash test_all.sh
|
|
|
|
log_all_dir=./log
|
|
|
|
cp ./tts_online_application.yaml ./conf/application.yaml -rf
|
|
|
|
bash test.sh tts_online $log_all_dir/log_tts_online_cpu
|
|
|
|
python change_yaml.py --change_type engine_type --target_key engine_list --target_value tts_online-onnx
|
|
bash test.sh tts_online-onnx $log_all_dir/log_tts_online-onnx_cpu
|
|
|
|
python change_yaml.py --change_type device --target_key device --target_value gpu:3
|
|
bash test.sh tts_online $log_all_dir/log_tts_online_gpu
|
|
|
|
python change_yaml.py --change_type engine_type --target_key engine_list --target_value tts_online-onnx
|
|
python change_yaml.py --change_type device --target_key device --target_value gpu:3
|
|
bash test.sh tts_online-onnx $log_all_dir/log_tts_online-onnx_gpu
|
|
|
|
echo "************************************** show all test results ****************************************"
|
|
cat $log_all_dir/log_tts_online_cpu/test_result.log
|
|
cat $log_all_dir/log_tts_online-onnx_cpu/test_result.log
|
|
cat $log_all_dir/log_tts_online_gpu/test_result.log
|
|
cat $log_all_dir/log_tts_online-onnx_gpu/test_result.log
|