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

update fix base chainer version to be 7.0.0 #423

Open
wants to merge 2 commits 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 10 additions & 1 deletion .flexci/pytest_script.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -eux

BASE=6.0.0
BASE=7.0.0

service docker stop
mount -t tmpfs -o size=100% tmpfs /var/lib/docker
Expand All @@ -13,24 +13,33 @@ if [ ${CHAINERX} -gt 0 ]; then
case ${CHAINER} in
stable)
DOCKER_IMAGE=asia.gcr.io/pfn-public-ci/chainer-chem-py$PYTHON-chainerx-gpu-stable:latest
echo pip install chainer >> install.sh
echo pip install cupy-cuda101 >> install.sh
;;
latest)
DOCKER_IMAGE=asia.gcr.io/pfn-public-ci/chainer-chem-py$PYTHON-chainerx-gpu-latest:latest
echo pip install --pre chainer >> install.sh
echo pip install --pre cupy-cuda101 >> install.sh
;;
base)
DOCKER_IMAGE=asia.gcr.io/pfn-public-ci/chainer-chem-py$PYTHON-chainerx-gpu-base:latest
echo pip install chainer==${BASE} >> install.sh
echo pip install cupy-cuda101==${BASE} >> install.sh
;;
esac
else
case ${CHAINER} in
stable)
DOCKER_IMAGE=asia.gcr.io/pfn-public-ci/chainer-chem-py$PYTHON-chainerx-cpu-stable:latest
echo pip install chainer >> install.sh
;;
latest)
DOCKER_IMAGE=asia.gcr.io/pfn-public-ci/chainer-chem-py$PYTHON-chainerx-cpu-latest:latest
echo pip install --pre chainer >> install.sh
;;
base)
DOCKER_IMAGE=asia.gcr.io/pfn-public-ci/chainer-chem-py$PYTHON-chainerx-cpu-base:latest
echo pip install chainer==${BASE} >> install.sh
;;
esac
fi
Expand Down