We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
colab is broken due to google removing cuda 10.1 here
this can be fixed by:
!apt-get -o Dpkg::Options::="--force-overwrite" install cuda-10-1 cuda-drivers import os os.environ["CUDA_HOME"] = '/usr/local/cuda-10.1'
however if you want to support modern GPUs as A100 you need cuda 11:
!apt-get -o Dpkg::Options::="--force-overwrite" install cuda-11-1 import os cuda_home = '/usr/local/cuda-11.1' os.environ["CUDA_HOME"] = cuda_home with open(os.path.join(cuda_home, 'version.txt'), 'w') as f: f.write('CUDA Version 11.1')
I couldn't figure out how to install cudnn, but it works. see e.g. my accessible colab: https://colab.research.google.com/github/eyaler/avatars4all/blob/master/ganivut.ipynb
The text was updated successfully, but these errors were encountered:
Thank you for raising this issue @eyaler it was very helpful. this should be pinned or at least put into the colab.
Sorry, something went wrong.
No branches or pull requests
colab is broken due to google removing cuda 10.1 here
this can be fixed by:
however if you want to support modern GPUs as A100 you need cuda 11:
I couldn't figure out how to install cudnn, but it works. see e.g. my accessible colab:
https://colab.research.google.com/github/eyaler/avatars4all/blob/master/ganivut.ipynb
The text was updated successfully, but these errors were encountered: