Correcting Cudnn to cuDNN in config script (#8719)

This commit is contained in:
Sean O'Keefe 2017-03-25 15:57:36 -07:00 committed by gunan
parent 0799c7fd65
commit bbe056e5a0

4
configure vendored
View File

@ -367,9 +367,9 @@ done
# Find out where the cuDNN library is installed
while true; do
# Configure the Cudnn version to use.
# Configure the cuDNN version to use.
if [ -z "$TF_CUDNN_VERSION" ]; then
read -p "Please specify the Cudnn version you want to use. [Leave empty to use system default]: " TF_CUDNN_VERSION
read -p "Please specify the cuDNN version you want to use. [Leave empty to use system default]: " TF_CUDNN_VERSION
fi
fromuser=""