dmlc--dgl
7176f5f25f
* add multigpu sage * Fix #2808 * multigpu test * try * fix remote url * fix * Revert "Fix #2808" This reverts commit 19741f7d546df34b33759d8d0c9a85992ebc6118. * add back thread_wrapped_func for backward compatibility * fix * fix multigpu * print nvidia-smi * use new docker image * fix * fix * add ogb mag
13 行
163 B
Bash
13 行
163 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# . /opt/conda/etc/profile.d/conda.sh
|
|
|
|
# install
|
|
pushd python
|
|
rm -rf build *.egg-info dist
|
|
pip uninstall -y dgl
|
|
python3 setup.py install
|
|
popd
|