Skip to content
This repository has been archived by the owner on Jan 22, 2024. It is now read-only.

CuDNN library unpacked to wrong path #23

Closed
wielandbrendel opened this issue Dec 21, 2015 · 2 comments
Closed

CuDNN library unpacked to wrong path #23

wielandbrendel opened this issue Dec 21, 2015 · 2 comments
Labels

Comments

@wielandbrendel
Copy link

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.

@flx42 flx42 closed this as completed in 237aa2b Dec 21, 2015
@flx42
Copy link
Member

flx42 commented Dec 21, 2015

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.

@wielandbrendel
Copy link
Author

Wow - a big thanks for the fast response!

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

3 participants