You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I realised that most of my problems are rooted from a version incompatibility among one of those cuda, cudnn, pytorch and python on windows 11.
I have 2 NVIDIA GeForce RTX 2080 Ti
Windows 11
First try:
I installed following version combination inside my 'stylegan' conda environment:
python=3.7.16
cudatoolkit=11.0 (manual installation, can be downloaded here )
everything is great except for cudatoolkit=11.0(it only supports windows 10). So, some drivers support cuda 11.0 not windows 11 and vice versa. cudatoolkit>=11.5 supports windows 11.
Second try:
I have uninstalled all cuda related software from my PC. I have created a new 'stylegan2' conda environment to keep second installation separately. This time I have tried to install cuda's compatible version with windows 11.
python=3.11.9
cudatoolkit=11.8(manually installed using .exe file, can be downloaded here )
In that case, there are following errors
'Failed to build CUDA kernels for upfirdn2d' because 'conv2d_gradfix not supported on PyTorch 2.2.2'.
This time, everything is great except for pytorch=2.2.2.
Can I never ever find cuda, cudnn, pytorch and python version combination that meets all requirements on my windows 11?
If anyone run the project on Windows 11 without errors. Please let me know cuda, cudnn, pytorch, python versions that you used.
The text was updated successfully, but these errors were encountered:
I realised that most of my problems are rooted from a version incompatibility among one of those cuda, cudnn, pytorch and python on windows 11.
I have 2 NVIDIA GeForce RTX 2080 Ti
Windows 11
First try:
I installed following version combination inside my 'stylegan' conda environment:
everything is great except for cudatoolkit=11.0(it only supports windows 10). So, some drivers support cuda 11.0 not windows 11 and vice versa. cudatoolkit>=11.5 supports windows 11.
Second try:
I have uninstalled all cuda related software from my PC. I have created a new 'stylegan2' conda environment to keep second installation separately. This time I have tried to install cuda's compatible version with windows 11.
In that case, there are following errors
'Failed to build CUDA kernels for upfirdn2d' because 'conv2d_gradfix not supported on PyTorch 2.2.2'.
This time, everything is great except for pytorch=2.2.2.
Can I never ever find cuda, cudnn, pytorch and python version combination that meets all requirements on my windows 11?
If anyone run the project on Windows 11 without errors. Please let me know cuda, cudnn, pytorch, python versions that you used.
The text was updated successfully, but these errors were encountered: