Unverified Commit 566719b1 authored by Hongzhi (Steve), Chen's avatar Hongzhi (Steve), Chen Committed by GitHub
Browse files

[Misc] clean up remove --inplace. (#6096)


Co-authored-by: default avatarUbuntu <ubuntu@ip-172-31-28-63.ap-northeast-1.compute.internal>
parent ec4f8f99
...@@ -202,7 +202,7 @@ If you are working on performance critical part, you may want to turn on Cython ...@@ -202,7 +202,7 @@ If you are working on performance critical part, you may want to turn on Cython
.. code-block:: bash .. code-block:: bash
cd python cd python
python setup.py build_ext --inplace python setup.py build_ext
You could test the build by running the following command and see the path of your local clone. You could test the build by running the following command and see the path of your local clone.
......
...@@ -45,8 +45,8 @@ if [[ $1 == "cugraph" ]]; then ...@@ -45,8 +45,8 @@ if [[ $1 == "cugraph" ]]; then
pip uninstall -y dgl pip uninstall -y dgl
# test install # test install
python3 setup.py install python3 setup.py install
# test inplace build (for cython) # test build (for cython)
python3 setup.py build_ext --inplace python3 setup.py build_ext
else else
for backend in pytorch mxnet tensorflow for backend in pytorch mxnet tensorflow
do do
...@@ -55,8 +55,8 @@ else ...@@ -55,8 +55,8 @@ else
pip uninstall -y dgl pip uninstall -y dgl
# test install # test install
python3 setup.py install python3 setup.py install
# test inplace build (for cython) # test build (for cython)
python3 setup.py build_ext --inplace python3 setup.py build_ext
done done
fi fi
popd popd
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment