-
Notifications
You must be signed in to change notification settings - Fork 202
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
Support for RTX 4090 #27
Comments
Perfect, thanks for sharing this! |
@shingarey could you share the docker environment for 4090? For some reason, I failed to build docker from dockerfile. It would be great to download the environment by |
@longwoo try this one: |
@shingarey I pulled your docker but could you please share how you incorporate it into
|
|
PATH_TO_FOUNDATIONPOSE_ON_HOST_PC Is this path referring to the path of FoundationPose-main? I don't quite understand, thank you. |
can you show all the steps including the docker pull? |
Yes, it refers to the path to the FoundationPose directory on your host PC. |
Thank you for your reply, it is very helpful to me. |
What are the reasons for not making a PR and making this update available in the main branch? Why keep it at 11.3? Also, cudagl and cuda images are at different docker repos. CudaGL adds support for OpenGL, but doesn't have images past cuda 11.4. Do we need OpenGL support? |
Thank you very much for your discussion. In the end, I resolved the issue using the following command |
Thank you! |
@shingarey would it be possible for you to share the Dockerfile you used to create the image since I would like to work on that updating it to Ubuntu 22 and adding ROS dependencies? It is my first time working with Docker and I am a bit lost on how to create the image and Dockerfile from scratch |
The current Dockerfile uses an image with outdated CUDA library
cudagl:11.3.0-devel
which does not support RTX 4090. To fix this, the docker image and torch version in the Dockerfile can be updated. Following changes worked for me.docker/dockerfile
:bundlesdf/mycuda/setup.py
from c++14 to c++17:With these fixes, I was able to successfully build and run the provided examples:
run_demo.py
andbundlesdf/run_nerf.py
.The text was updated successfully, but these errors were encountered: