aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure.py
diff options
context:
space:
mode:
authorGravatar gracehoney <31743510+aaroey@users.noreply.github.com>2018-06-21 15:23:05 -0700
committerGravatar gracehoney <31743510+aaroey@users.noreply.github.com>2018-06-21 15:23:05 -0700
commit4631936e61651101932073197c08b600006530a3 (patch)
treec1f84c32d61363521f2dbfe58a7aba43246cb1cf /configure.py
parentfe978b26ccffd44c0d80ad1697c22dfba36ce69f (diff)
Fix internal build errors.
Diffstat (limited to 'configure.py')
-rw-r--r--configure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index a14d006a73..ad585fa52e 100644
--- a/configure.py
+++ b/configure.py
@@ -944,7 +944,7 @@ def set_tf_cudnn_version(environ_cp):
def is_cuda_compatible(lib, cuda_ver, cudnn_ver):
- """Check the compatibility between given library and cudnn/cudart libraries."""
+ """Check compatibility between given library and cudnn/cudart libraries."""
ldd_bin = which('ldd') or '/usr/bin/ldd'
ldd_out = run_shell([ldd_bin, lib], True)
ldd_out = ldd_out.split(os.linesep)