Created
May 28, 2020 07:08
-
-
Save VoVAllen/0ac992677ad80984751dc80ac1617635 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -x | |
if [ $# -ne 2 ]; then | |
REPO=dmlc | |
BRANCH=master | |
else | |
REPO=$1 | |
BRANCH=$2 | |
fi | |
# docker run --name dgl-reg --rm --hostname=reg-machine --runtime=nvidia -dit dgllib/dgl-ci-gpu:conda /bin/bash | |
docker cp ./asv_data dgl-reg:/root/asv_data/ | |
docker cp ./run.sh dgl-reg:/root/run.sh | |
docker exec dgl-reg bash /root/run.sh $REPO $BRANCH | |
docker cp dgl-reg:/root/regression/dgl/asv/. ./asv_data/ | |
# docker stop dgl-reg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment