Open reynoldscem opened 2 years ago
For running this on NVIDIA 3000 series cards, you can follow the instructions below for environment installation & CUDA code compile. (note that this has been tested on RTX 3090 card successfully)
conda create -n neurmips python=3.8
conda activate neurmips
conda install -c pytorch pytorch=1.8.0 torchvision cudatoolkit=11.1
conda install -c conda-forge -c fvcore -c iopath fvcore iopath
conda install pytorch3d -c pytorch3d
pip install "git+https://github.com/facebookresearch/pytorch3d.git"
conda install -c conda-forge hydra-core
pip install vedo
pip install scikit-image
export PATH=/usr/local/cuda-11.1/bin${PATH:+:${PATH}}
export LD_LIBRARY_PATH=/usr/local/cuda-11.1/lib64${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
cd cuda
python setup.py develop
Thank you, I will try that out.
It appears the version of cuda toolkit and maybe some other stuff set in the
environment.yml
isn't compatible with thesm_86
compute arch. Have you tried running this on nVidia 3000 series cards and can you advise how one might successfully install / compile / run the code on them?