-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An illegal memory access was encountered in Propagation.cu at line 1117 #53
Comments
Same problemfrom setuptools import setup import os.path as osp setup( ImportError: /home/ubuntu/anaconda3/envs/gaussianpro/lib/python3.7/site-packages/gaussianpro.cpython-37m-x86_64-linux-gnu.so: undefined symbol: _ZN2cv3MatC1Ev |
Hi, the opencv library in setup.py is C++ version. So it could be installed by "conda install -c conda-forge opencv". |
@flybiubiu Has your problem been solved? I encounter the same problem. The old version works out. But when I update it to 1.0 version, I can not run the train.py despite the conda environment is installed successfully. |
I modified these lines according to my installation path and it works. It may help you.
|
Thank you for your reply. I has edited the setup.py, yet it just can't work. |
After I modified these lines, I removed the build dir in ./submodules/Propagation and reinstalled this package. That's all I did. |
I have tried all solutions during the past three days. I finally have to retreat to the old version. I wonder whether 1.0 version can not work well on RTX4090. It seems that 1.0 version doesn't support with sm_89 architecture (Ada Lovelace). Thank you for your help though. |
@ParanoidPY The 1.0 version I mentioned is the default branch of the project. You can try the 'main' version without pybind. https://github.com/kcheng1021/GaussianPro/tree/main |
Thanks for your amazing works!
I have some troubles in the environment.
There was no error during installing the modules. But when I run demo.sh in youtube01, the error occurred and the training progress was terminated:
Then I debug the code and found the error was raised in the line 436 of utils/graphics_utils.py:
I guess there are some wrong configurations when I build the "gaussianpro" module.
Here is my configs:
I followed the readme to install those modules:
I modified the submodules/Propagation/setup.py as bellow:
It is strange that the building progress could not find my opencv and torch, so I add the path in my ~/.bashrc:
Then the gaussianpro was installed successfully.
I think there must be some error when I build the gaussianpro but I cannot fix it.
Any help on this would be greatly appreciated.
The text was updated successfully, but these errors were encountered: