From 916776a1744d78d65e7c4f52df3bcaa8cf466872 Mon Sep 17 00:00:00 2001 From: Martin Wicke Date: Thu, 14 Jan 2016 07:30:00 -0800 Subject: Refer to cuDNN v2 by its proper name, not CUDNN 6.5 V2, as requested by NVIDIA. Change: 112120651 --- configure | 8 ++++---- tensorflow/g3doc/get_started/os_setup.md | 24 ++++++++++++------------ 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/configure b/configure index 48ebebedf8..b64d4693bb 100755 --- a/configure +++ b/configure @@ -64,12 +64,12 @@ while true; do # Retry done -# Find out where the CUDNN library is installed +# Find out where the cuDNN library is installed while true; do fromuser="" if [ -z "$CUDNN_INSTALL_PATH" ]; then default_cudnn_path=${CUDA_TOOLKIT_PATH} - read -p "Please specify the location where CUDNN 6.5 V2 library is installed. Refer to README.md for more details. [Default is $default_cudnn_path]: " CUDNN_INSTALL_PATH + read -p "Please specify the location where cuDNN v2 library is installed. Refer to README.md for more details. [Default is $default_cudnn_path]: " CUDNN_INSTALL_PATH fromuser="1" if [ -z "$CUDNN_INSTALL_PATH" ]; then CUDNN_INSTALL_PATH=$default_cudnn_path @@ -81,7 +81,7 @@ while true; do if [ -e "$CUDNN_INSTALL_PATH/libcudnn.so.6.5" -o -e "$CUDNN_INSTALL_PATH/lib64/libcudnn.so.6.5" ]; then break fi - echo "Invalid path to CUDNN 6.5 V2 toolkit. Neither of the following two files can be found:" + echo "Invalid path to cuDNN v2 toolkit. Neither of the following two files can be found:" echo "$CUDNN_INSTALL_PATH/lib64/libcudnn.so.6.5" echo "$CUDNN_INSTALL_PATH/libcudnn.so.6.5" if [ -z "$fromuser" ]; then @@ -96,7 +96,7 @@ cat > third_party/gpus/cuda/cuda.config <= 3.5. Supported cards include but are not limited to: @@ -363,11 +363,11 @@ https://developer.nvidia.com/cuda-toolkit-70 Install the toolkit into e.g. `/usr/local/cuda` -##### Download and install CUDNN Toolkit 6.5 +##### Download and install cuDNN v2 https://developer.nvidia.com/rdp/cudnn-archive -Uncompress and copy the cudnn files into the toolkit directory. Assuming the +Uncompress and copy the cuDNN files into the toolkit directory. Assuming the toolkit is installed in `/usr/local/cuda`: ``` bash @@ -376,7 +376,7 @@ sudo cp cudnn-6.5-linux-x64-v2/cudnn.h /usr/local/cuda/include sudo cp cudnn-6.5-linux-x64-v2/libcudnn* /usr/local/cuda/lib64 ``` -##### Configure TensorFlow's canonical view of Cuda libraries +##### Configure TensorFlow's canonical view of Cuda libraries When running the `configure` script from the root of your source tree, select the option `Y` when asked to build TensorFlow with GPU support. @@ -389,7 +389,7 @@ GPU support will be enabled for TensorFlow Please specify the location where CUDA 7.0 toolkit is installed. Refer to README.md for more details. [default is: /usr/local/cuda]: /usr/local/cuda -Please specify the location where CUDNN 6.5 V2 library is installed. Refer to +Please specify the location where the cuDNN v2 library is installed. Refer to README.md for more details. [default is: /usr/local/cuda]: /usr/local/cuda Setting up Cuda include -- cgit v1.2.3