From 542de2bed1d591398b5f24b3adef6f5b10794ff2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C4=93teris=20Paikens?= Date: Thu, 4 Aug 2016 18:22:19 +0300 Subject: [PATCH] Added libcupti path to Linux GPU support documentation Added path to libcupti in the documentation for enabling Linux GPU support. Without this library being in LD path certain tutorials (e.g. https://www.tensorflow.org/versions/master/how_tos/graph_viz/index.html) crash with message "tensorflow/stream_executor/dso_loader.cc:102] Couldn't open CUDA library libcupti.so. " --- tensorflow/g3doc/get_started/os_setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/g3doc/get_started/os_setup.md b/tensorflow/g3doc/get_started/os_setup.md index ef837af395f..d85ae429fa9 100644 --- a/tensorflow/g3doc/get_started/os_setup.md +++ b/tensorflow/g3doc/get_started/os_setup.md @@ -444,7 +444,7 @@ variables. Consider adding the commands below to your `~/.bash_profile`. These assume your CUDA installation is in `/usr/local/cuda`: ```bash -export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/cuda/lib64" +export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/cuda/lib64:/usr/local/cuda/extras/CUPTI/lib64" export CUDA_HOME=/usr/local/cuda ```