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

Revert "[Misc] clean up remove --inplace." (#6097)

parent e0aa8389
...@@ -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 python setup.py build_ext --inplace
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 build (for cython) # test inplace build (for cython)
python3 setup.py build_ext python3 setup.py build_ext --inplace
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 build (for cython) # test inplace build (for cython)
python3 setup.py build_ext python3 setup.py build_ext --inplace
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