Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
schmidt-ju committed Feb 11, 2023
2 parents c66cd17 + 465828c commit acfdfe0
Show file tree
Hide file tree
Showing 13 changed files with 49 additions and 47 deletions.
20 changes: 10 additions & 10 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ pipeline {
agent {
docker {
label "linux-cpu-node"
image "dgllib/dgl-ci-cpu:v221216"
image "dgllib/dgl-ci-cpu:v230210"
args "-u root"
alwaysPull true
}
Expand All @@ -280,7 +280,7 @@ pipeline {
agent {
docker {
label "linux-cpu-node"
image "dgllib/dgl-ci-gpu:cu102_v221216"
image "dgllib/dgl-ci-gpu:cu102_v230210"
args "-u root"
alwaysPull true
}
Expand Down Expand Up @@ -335,7 +335,7 @@ pipeline {
agent {
docker {
label "linux-cpu-node"
image "dgllib/dgl-ci-cpu:v221216"
image "dgllib/dgl-ci-cpu:v230210"
alwaysPull true
}
}
Expand All @@ -352,7 +352,7 @@ pipeline {
agent {
docker {
label "linux-gpu-node"
image "dgllib/dgl-ci-gpu:cu102_v221216"
image "dgllib/dgl-ci-gpu:cu102_v230210"
args "--runtime nvidia"
alwaysPull true
}
Expand Down Expand Up @@ -381,7 +381,7 @@ pipeline {
agent {
docker {
label "linux-cpu-node"
image "dgllib/dgl-ci-cpu:v220816"
image "dgllib/dgl-ci-cpu:v230210"
alwaysPull true
}
}
Expand All @@ -402,7 +402,7 @@ pipeline {
agent {
docker {
label "linux-gpu-node"
image "dgllib/dgl-ci-gpu:cu101_v220816"
image "dgllib/dgl-ci-gpu:cu101_v230210"
args "--runtime nvidia"
alwaysPull true
}
Expand All @@ -424,7 +424,7 @@ pipeline {
agent {
docker {
label "linux-cpu-node"
image "dgllib/dgl-ci-cpu:v221216"
image "dgllib/dgl-ci-cpu:v230210"
args "--shm-size=4gb"
alwaysPull true
}
Expand Down Expand Up @@ -476,7 +476,7 @@ pipeline {
agent {
docker {
label "linux-gpu-node"
image "dgllib/dgl-ci-gpu:cu102_v221216"
image "dgllib/dgl-ci-gpu:cu102_v230210"
args "--runtime nvidia --shm-size=8gb"
alwaysPull true
}
Expand Down Expand Up @@ -504,7 +504,7 @@ pipeline {
agent {
docker {
label "linux-cpu-node"
image "dgllib/dgl-ci-cpu:v221216"
image "dgllib/dgl-ci-cpu:v230210"
args "--shm-size=4gb"
alwaysPull true
}
Expand Down Expand Up @@ -549,7 +549,7 @@ pipeline {
agent {
docker {
label "linux-cpu-node"
image "dgllib/dgl-ci-cpu:v221216"
image "dgllib/dgl-ci-cpu:v230210"
alwaysPull true
}
}
Expand Down
File renamed without changes.
6 changes: 6 additions & 0 deletions docker/install/conda_env/mxnet_cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,9 @@ dependencies:
- nltk
- requests[security]
- tqdm
- psutil
- pyyaml
- pydantic
- pandas
- rdflib
- ogb
6 changes: 6 additions & 0 deletions docker/install/conda_env/mxnet_gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,9 @@ dependencies:
- nltk
- requests[security]
- tqdm
- psutil
- pyyaml
- pydantic
- pandas
- rdflib
- ogb
6 changes: 6 additions & 0 deletions docker/install/conda_env/tensorflow_cpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,9 @@ dependencies:
- nltk
- requests[security]
- tqdm
- psutil
- pyyaml
- pydantic
- pandas
- rdflib
- ogb
6 changes: 6 additions & 0 deletions docker/install/conda_env/tensorflow_gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,9 @@ dependencies:
- nltk
- requests[security]
- tqdm
- psutil
- pyyaml
- pydantic
- pandas
- rdflib
- ogb
9 changes: 8 additions & 1 deletion docker/install/conda_env/torch_cpu_pip.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
--find-links https://download.pytorch.org/whl/torch_stable.html
torch==1.12.0+cpu
torchmetrics
pytest
nose
numpy
Expand All @@ -9,7 +10,13 @@ networkx
matplotlib
nltk
requests[security]
tqdm
tqdm
pandas
scikit-learn
ogb
psutil
pyyaml
pydantic
rdflib
filelock
pyarrow
7 changes: 6 additions & 1 deletion docker/install/conda_env/torch_gpu_pip.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
--find-links https://download.pytorch.org/whl/torch_stable.html
torch==1.12.0+cu102
torchmetrics
pytest
nose
numpy
Expand All @@ -9,7 +10,11 @@ networkx
matplotlib
nltk
requests[security]
tqdm
tqdm
pandas
scikit-learn
ogb
psutil
pyyaml
pydantic
rdflib
2 changes: 1 addition & 1 deletion docker/install/ubuntu_install_conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ apt-get update --fix-missing && \
wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda.sh && \
/bin/bash ~/miniconda.sh -b -p /opt/conda && \
rm ~/miniconda.sh && \
/opt/conda/bin/conda clean -tipsy && \
/opt/conda/bin/conda clean -tipy && \
ln -s /opt/conda/etc/profile.d/conda.sh /etc/profile.d/conda.sh && \
echo ". /opt/conda/etc/profile.d/conda.sh" >> ~/.bashrc && \
echo "conda activate base" >> ~/.bashrc
Expand Down
2 changes: 0 additions & 2 deletions tests/scripts/task_distributed_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ export CUDA_VISIBLE_DEVICES=-1

conda activate ${DGLBACKEND}-ci

python3 -m pip install pytest psutil pyyaml pydantic pandas rdflib ogb filelock pyarrow || fail "pip install"

export PYTHONUNBUFFERED=1
export OMP_NUM_THREADS=1
export DMLC_LOG_DEBUG=1
Expand Down
1 change: 0 additions & 1 deletion tests/scripts/task_go_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,4 @@ popd
export LC_ALL=C.UTF-8
export LANG=C.UTF-8

python -m pip install psutil || fail "pip install"
python3 -m pytest -v --junitxml=pytest_go.xml --durations=100 tests/go/test_model.py || fail "go"
30 changes: 0 additions & 30 deletions tests/scripts/task_mxnet_tutorial_test.sh

This file was deleted.

1 change: 0 additions & 1 deletion tests/scripts/task_unit_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ fi

conda activate ${DGLBACKEND}-ci

python3 -m pip install pytest psutil pyyaml pydantic pandas rdflib ogb torchmetrics || fail "pip install"
if [ $DGLBACKEND == "mxnet" ]
then
python3 -m pytest -v --junitxml=pytest_compute.xml --durations=100 --ignore=tests/compute/test_ffi.py tests/compute || fail "compute"
Expand Down

0 comments on commit acfdfe0

Please sign in to comment.