-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
CUDA error: an illegal memory access was encountered #660
Comments
Hi, Check out this issue and the corresponding PR that is linked here . Should help :) |
have you fix it up? |
Are you using the source code? The reason I had problems was that I got the degree of the spherical harmonics wrong. |
Perhaps just ensure that all the parameters passed to gaussian_renderer is on the same device, i also got this error when i tried to modify something, finally i found some parameters is on cpu, and i changed it to cuda, everything worked. |
I have solved this problem. you just need to install the version of diff-gaussian-rasterization |
I have solved this problem. you just need to install the version of diff-gaussian-rasterization |
thank you ! it work! |
Hi, how did you solve it? I have the same problem, but other methods didn't work. |
Have you fix it up? |
have you solve it? |
Hello, can you talk about the specific part that was changed? |
Hi,
Thanks a lot for sharing your great work.
I've built the environment properly and while running the DTU dataset, I try to use the rasterization to render the image. But I got following error:
Traceback (most recent call last):
File "train.py", line 225, in
main()
File "train.py", line 150, in main
train_epoch(config,
File "/root/autodl-tmp/idea/scripts/trainer.py", line 94, in train_epoch
image = render(view, pc, background, config, device)["render"].cuda()
File "/root/autodl-tmp/idea/gaussian_renderer/init.py", line 80, in render
"visibility_filter" : radii > 0,
RuntimeError: CUDA error: an illegal memory access was encountered
Compile with
TORCH_USE_CUDA_DSA
to enable device-side assertions.Any idea how to resolve?
My system & settings:
RTX3090
Linux 20.04
I hope I can get some solution for this problem!
Thank you.
The text was updated successfully, but these errors were encountered: