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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
#!/bin/bash
# collect env info
bash ../../utils/pd_env_collect.sh
# 提供可稳定复现性能的脚本, 默认在标准docker环境内py37执行: paddlepaddle/paddle:latest-gpu-cuda10.1-cudnn7 paddle=2.1.2 py=37
# 执行目录:需说明
cd **
# 1 安装该模型需要的依赖 (如需开启优化策略请注明)
pip install ...
# 2 拷贝该模型需要数据、预训练模型
# 3 批量运行( 如不方便批量, 1, 2需放到单个模型中)
model_mode_list = ( MobileNetv1 MobileNetv2)
fp_item_list = ( fp32 fp16)
bs_item = ( 32 64 96)
for model_mode in ${ model_mode_list [@] } ; do
for fp_item in ${ fp_item_list [@] } ; do
for bs_item in ${ bs_list [@] }
do
echo " index is speed, 1gpus, begin, ${ model_name } "
run_mode = sp
CUDA_VISIBLE_DEVICES = 0 bash run_benchmark.sh ${ run_mode } ${ bs_item } ${ fp_item } 500 ${ model_mode } # (5min)
sleep 60
echo " index is speed, 8gpus, run_mode is multi_process, begin, ${ model_name } "
run_mode = mp
CUDA_VISIBLE_DEVICES = 0,1,2,3,4,5,6,7 bash run_benchmark.sh ${ run_mode } ${ bs_item } ${ fp_item } 500 ${ model_mode }
sleep 60
done
done
done