run.sh 414 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
. /opt/conda/etc/profile.d/conda.sh

cd ~
cd regression
cd dgl
# git clone --recursive https://github.com/dmlc/dgl.git 
git pull 
git submodule init
git submodule update --recursive

conda activate base
pip install asv

for backend in pytorch mxnet tensorflow
do 
conda activate "${backend}-ci"
pip uninstall -y dgl-cu101
pip install --pre dgl-cu101
done

conda activate base
asv machine --yes
asv run
asv publish