Configuration for an RTX 3090 #83
-
I got a new graphics card (yay!), an RTX 3090. I switched and installed the NVidia drivers. When I try to run my existing decode_env environment, I get the the following warning when importing torch in the DECODE training notebook:
Here's what I have in my current decode environment:
What should I update to make it work? From a quick googling it looks like I need Cuda 11 instead of 10.1, and a more recent pytorch (1.7.0 instead of 1.6.0)? Would it be simpler to make a new environment so that I don't risk breaking this one too badly (given I could need python 3.8)? I see the latest installation instructions (master as opposed to 0.9.4) have dropped the "cudatoolkit=10.1" command for just "cudatoolkit", so would installation according to the master version of the instructions work for my case? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 13 replies
-
Mmmh current install instructions with no version for cudatoolkit will install cudatoolkit 10.2 and pytorch 1.6.0, so I guess it won't work as is in a new environment. |
Beta Was this translation helpful? Give feedback.
-
First: I am jealous, I might need to ask my PI for an RTX 3090 in order to be able to fix this 😅 Ehm yes, I would definitely recommend going for a fresh environment. In your case it might be best if you
Let me know if that works |
Beta Was this translation helpful? Give feedback.
First: I am jealous, I might need to ask my PI for an RTX 3090 in order to be able to fix this 😅
Ehm yes, I would definitely recommend going for a fresh environment. In your case it might be best if you
git checkout v0.9.4
conda env create -f environment_cuda.yaml
conda activate decode_cuda
python setup.py install
Let me know if that works