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
.. code-block:: bash
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.
......
......@@ -45,8 +45,8 @@ if [[ $1 == "cugraph" ]]; then
pip uninstall -y dgl
# test install
python3 setup.py install
# test build (for cython)
python3 setup.py build_ext
# test inplace build (for cython)
python3 setup.py build_ext --inplace
else
for backend in pytorch mxnet tensorflow
do
......@@ -55,8 +55,8 @@ else
pip uninstall -y dgl
# test install
python3 setup.py install
# test build (for cython)
python3 setup.py build_ext
# test inplace build (for cython)
python3 setup.py build_ext --inplace
done
fi
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