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

set -e

. /opt/conda/etc/profile.d/conda.sh
6
conda activate pytorch-ci
7
8
9
10
11
12
13
14
15
16
17
# Default building only with cpu
DEVICE=${DGL_BENCH_DEVICE:-cpu}

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

conda deactivate