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
{{ message }}
This repository has been archived by the owner on Jan 22, 2024. It is now read-only.
I noticed that the CuDNN libraries are put in the root directory although they should actually be under /usr/local/cuda/lib64. I tried to boil it down and the issue seems to be at the untar command:
tar -xzf cudnn-7.0-linux-x64-v3.0-prod.tgz --wildcards 'cuda/lib64/libcudnn.so*' -C /usr/local
I tried, but the files are untarred into the root, i.e. /cuda/lib64/... One workaround would be
cd /usr/local && \
tar -xzf /cudnn-7.0-linux-x64-v3.0-prod.tgz --wildcards 'cuda/lib64/libcudnn.so*'
PS: Btw, a big thanks for making CUDA + CuDNN available on Docker Hub! That really was the missing piece to make my toolchain available on Docker Hub.
The text was updated successfully, but these errors were encountered:
It was only the case for images 7.0-cudnn3-runtime and 7.5-cudnn3-runtime, I had to move the -C before the --wildcards. It should be fixed now, the new images will be pushed to the Hub in a few minutes.
I noticed that the CuDNN libraries are put in the root directory although they should actually be under /usr/local/cuda/lib64. I tried to boil it down and the issue seems to be at the untar command:
I tried, but the files are untarred into the root, i.e. /cuda/lib64/... One workaround would be
PS: Btw, a big thanks for making CUDA + CuDNN available on Docker Hub! That really was the missing piece to make my toolchain available on Docker Hub.
The text was updated successfully, but these errors were encountered: