Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions scripts/benchmark_ci/model_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ if [ -f "rerun_model.txt" ];then
#install paddle develop
cd /workspace/Paddle
pip uninstall -y paddlepaddle_gpu
if ls build/python/dist/*whl >/dev/null 2>&1; then
pip install build/python/dist/paddlepaddle_gpu-0.0.0-cp37-cp37m-linux_x86_64.whl
elif ls dist/*whl >/dev/null 2>&1; then
pip install dist/paddlepaddle_gpu-0.0.0-cp37-cp37m-linux_x86_64.whl
fi
pip install build/python/dist/paddlepaddle_gpu-0.0.0-cp37-cp37m-linux_x86_64.whl
[ $? -ne 0 ] && echo "install paddle failed." && exit 1
#running model in paddle develop
Expand Down