Graydyn Young
1 min readJul 6, 2016

--

Great writeup. I’d just like to point out that this is under so much development that your information is already somewhat out of date. You can now skip the first step and use

FROM gcr.io/tensorflow/tensorflow:latest-gpu

without running run-docker-gpu.sh (which has been removed).

Unfortunately since Nvidia forces users to signup for their newsletter before downloading CUDNN, installing that is still required. I would also note that in some cases this is easier than copying CUDNN into the /nvidia folders:

export LD_LIBRARY_PATH=<path to cudnn>/include:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH=<path to cudnn>/lib64:$LD_LIBRARY_PATH

--

--