Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nodify_benchmar_ci #1568

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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