lxxue / FRNN

Fixed Radius Nearest Neighbor Search on GPU

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

changes to frnn.py doesn't take effect

yuhao opened this issue · comments

seems like changes made to frnn/frnn.py doesn't take place, even after running python setup.py install. any idea why this might be the case?

You can use python setup.py develop for this case.

thanks. or i could manually run python setup.py install each time seems like.

With develop you can constantly make changes in python without doing install again according to this answer. But if you make changes in the C++/CUDA, you need to recompile it with python setup.py install/develop.