facebookresearch / NSVF

Open source code for the paper of Neural Sparse Voxel Fields.
MIT License
805 stars 92 forks source link

cannot use with Rtx3090 GPU #45

Closed stephane2017hongkong closed 3 years ago

stephane2017hongkong commented 3 years ago

Describe the bug if using PyTorch 1.4 and Cuda 10.2, then Rtx3090 is not supported (RTX 3090 is using compute 8.6) if trying with PyTorch 1.71 and Cuda 11.0 then fairnr does not compile (ValueError: Unknown CUDA arch (8.6) or GPU not supported)

To Reproduce Steps to reproduce the behavior: 1 - install all recommended dependancies as explained in Readme.md

Expected behavior As NSVF is about fast rendering it would be great to have it working on latest Nvidia's flagship GPU.

Desktop (please complete the following information):

peschn commented 3 years ago

I am using nsvf with 2 rtx3090 and it works fine. But the difference is, that I am using CUDA 11.1. I installed pytorch with the following command: pip install torch==1.7.1+cu110 -f https://download.pytorch.org/whl/torch_stable.html

Did you test your CUDA installation, does it work? What is the output if you run nvidia-smi?

stephane2017hongkong commented 3 years ago

Thank you for this detailed info, it helped me to sort it out.