dmlc--dgl
b9e4a5b742
* add tests. * 111 * fix * Update asv.conf.json * fix. * benchmark partition with livejournal. * fix benchmark * fix. * fix. * remove ogb * Revert "Update asv.conf.json" This reverts commit dd327a5564f4ef01795e444e79b17265b9c8b391. * change branch * depend pandas * Revert "change branch" This reverts commit 1d4f93756492a93f2e3cde07229a59a31a8c380b. * Update README.md Co-authored-by: VoVAllen <jz1749@nyu.edu> Co-authored-by: Jinjing Zhou <VoVAllen@users.noreply.github.com>
22 行
410 B
Bash
22 行
410 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
python -m pip install numpy
|
|
|
|
. /opt/conda/etc/profile.d/conda.sh
|
|
|
|
pushd python
|
|
for backend in pytorch mxnet tensorflow
|
|
do
|
|
conda activate "${backend}-ci"
|
|
rm -rf build *.egg-info dist
|
|
pip uninstall -y dgl
|
|
# test install
|
|
python3 setup.py install
|
|
# test inplace build (for cython)
|
|
python3 setup.py build_ext --inplace
|
|
python3 -m pip install -r /root/requirement.txt
|
|
done
|
|
popd
|
|
conda deactivate |