build_dgl_asv.sh 457 Bytes
Newer Older
1
2
3
4
#!/bin/bash

set -e

5
6
# . /opt/conda/etc/profile.d/conda.sh
# conda activate pytorch-ci
7
8
9
# Default building only with cpu
DEVICE=${DGL_BENCH_DEVICE:-cpu}

10
11
12
pip install -r /asv/torch_gpu_pip.txt
pip install pandas rdflib ogb

13
14
15
16
17
18
19
20
# build
if [[ $DEVICE == "cpu" ]]; then
    CMAKE_VARS=""
else
    CMAKE_VARS="-DUSE_CUDA=ON"
fi
mkdir -p build
pushd build
21
cmake -DCUDA_TOOLKIT_ROOT_DIR=/usr/local/cuda -DBUILD_TORCH=ON $CMAKE_VARS ..
22
23
make -j
popd
24

25
# conda deactivate