Skip to content
Open
Show file tree
Hide file tree
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
27 changes: 27 additions & 0 deletions .github/workflows/cpu_setup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: cpu_setup

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: benchmark_gnn
environment-file: environment_cpu.yml
python-version: 3.7
- run: |
conda info
conda list

27 changes: 27 additions & 0 deletions .github/workflows/gpu_setup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: gpu_setup

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: benchmark_gnn
environment-file: environment_gpu.yml
python-version: 3.7
- run: |
conda info
conda list

70 changes: 32 additions & 38 deletions environment_cpu.yml
Original file line number Diff line number Diff line change
@@ -1,44 +1,38 @@
name: benchmark_gnn
channels:
- pytorch
- dglteam
- conda-forge
- anaconda
- defaults
dependencies:
- python=3.7.4
- python-dateutil=2.8.0
- pip=19.2.3
- pytorch=1.6.0
- torchvision==0.7.0
- pillow==6.1
- dgl=0.6.1
- numpy=1.19.2
- matplotlib=3.1.0
- tensorboard=1.14.0
- tensorboardx=1.8
- future=0.18.2
- absl-py
- networkx=2.3
- scikit-learn=0.21.2
- scipy=1.3.0
- notebook=6.0.0
- h5py=2.9.0
- mkl=2019.4
- ipykernel=5.1.2
- ipython=7.7.0
- ipython_genutils=0.2.0
- ipywidgets=7.5.1
- jupyter=1.0.0
- jupyter_client=5.3.1
- jupyter_console=6.0.0
- jupyter_core=4.5.0
- plotly=4.1.1
- scikit-image=0.15.0
- requests==2.22.0
- tqdm==4.43.0
- python==3.7
- pip
- pip:
- python-dateutil==2.8.0
- torch==1.6.0
- torchvision==0.7.0
- pillow==6.1
- dgl==0.6.1
- numpy==1.19.2
- matplotlib==3.1.0
- future==0.18.2
- absl-py
- networkx==2.3
- scikit-learn==0.21.2
- scipy==1.4.1
- notebook==6.0.0
- h5py==2.9.0
- mkl==2019.0 # next version 2021.1.1
- ipykernel==5.1.2
- ipython==7.7.0
- ipython_genutils==0.2.0
- ipywidgets==7.5.1
- jupyter==1.0.0
- jupyter_client==5.3.1
- jupyter_console==6.0.0
- jupyter_core==4.5.0
- jupyterlab==2.3.2
- plotly==4.1.1
- scikit-image==0.15.0
- requests==2.22.0
- tqdm==4.43.0
- tensorflow==2.1.0
- tensorflow-estimator==2.1.0
- tensorboard==2.1.1
- ogb==1.2.2
- tensorboardx==2.5.1
- ogb==1.2.6
72 changes: 34 additions & 38 deletions environment_gpu.yml
Original file line number Diff line number Diff line change
@@ -1,47 +1,43 @@
name: benchmark_gnn
channels:
- pytorch
- dglteam
- conda-forge
- fragcolor
- anaconda
- defaults
dependencies:
- cudatoolkit=10.2
- cudnn=7.6.5
- python=3.7.4
- python-dateutil=2.8.0
- pip=19.2.3
- pytorch=1.6.0
- torchvision==0.7.0
- pillow==6.1
- dgl-cuda10.2=0.6.1
- numpy=1.19.2
- matplotlib=3.1.0
- tensorboard=1.14.0
- tensorboardx=1.8
- future=0.18.2
- absl-py
- networkx=2.3
- scikit-learn=0.21.2
- scipy=1.3.0
- notebook=6.0.0
- h5py=2.9.0
- mkl=2019.4
- ipykernel=5.1.2
- ipython=7.7.0
- ipython_genutils=0.2.0
- ipywidgets=7.5.1
- jupyter=1.0.0
- jupyter_client=5.3.1
- jupyter_console=6.0.0
- jupyter_core=4.5.0
- plotly=4.1.1
- scikit-image=0.15.0
- requests==2.22.0
- tqdm==4.43.0
- python==3.7
- pip
- cudatoolkit==10.2
- cudnn==7.6.5
- pip:
- python-dateutil==2.8.0
- torch==1.6.0
- torchvision==0.7.0
- pillow==6.1
- dgl-cuda10.2==0.6.1
- numpy==1.19.2
- matplotlib==3.1.0
- future==0.18.2
- absl-py
- networkx==2.3
- scikit-learn==0.21.2
- scipy==1.4.1
- notebook==6.0.0
- h5py==2.9.0
- mkl==2019.0 # next version 2021.1.1
- ipykernel==5.1.2
- ipython==7.7.0
- ipython_genutils==0.2.0
- ipywidgets==7.5.1
- jupyter==1.0.0
- jupyter_client==5.3.1
- jupyter_console==6.0.0
- jupyter_core==4.5.0
- jupyterlab==2.3.2
- plotly==4.1.1
- scikit-image==0.15.0
- requests==2.22.0
- tqdm==4.43.0
- tensorflow-gpu==2.1.0
- tensorflow-estimator==2.1.0
- tensorboard==2.1.1
- ogb==1.2.2
- tensorboardx==2.5.1
- ogb==1.2.6