nerfstudio
nerfstudio copied to clipboard
OSError: Could not find compatible tinycudann extension for compute capability 61.
When I train the nerf using command(ns-train nerfacto --data data/nerfstudio/poster), I get following issue Issue: OSError: Could not find compatible tinycudann extension for compute capability 61. I have installed required packages as per the commands provided in git and no issues there. Could you please help me resolve this issue.
Below are my workstation and conda environment details:
Python version: 3.9.15
OS: linux
torch version: '11.3'
GPU: 'NVIDIA GeForce GTX 1080 Ti'
Error message:
Check that your nvidia driver is up to date.
Also try running pip list | grep torch
The torch version should be 1.12.1+cu113
or 1.12.1+cu116
If the +cu...
is missing, then you need to reinstall pytorch with cuda support, ie
pip install torch==1.12.1+cu113 torchvision==0.13.1+cu113 -f https://download.pytorch.org/whl/torch_stable.html
Hi, I have encountered the same problem, have you resolved it?