2017-09-15 3 views
-1

begegnete ich den folgenden Fehler beim Versuch, ein TensorFlow Programm auszuführen:Import: undefined Symbol: cudnnConvolutionBiasActivationForward

$ python3 
Python 3.5.2 (default, Nov 17 2016, 17:05:23) 
[GCC 5.4.0 20160609] on linux 
Type "help", "copyright", "credits" or "license" for more information. 
>>> import tensorflow as tf 
Traceback (most recent call last): 
    File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 41, in <module> 
    from tensorflow.python.pywrap_tensorflow_internal import * 
    File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 28, in <module> 
    _pywrap_tensorflow_internal = swig_import_helper() 
    File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 24, in swig_import_helper 
    _mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description) 
    File "/usr/lib/python3.5/imp.py", line 242, in load_module 
    return load_dynamic(name, filename, file) 
    File "/usr/lib/python3.5/imp.py", line 342, in load_dynamic 
    return _load(spec) 
ImportError: /usr/local/lib/python3.5/dist-packages/tensorflow/python/_pywrap_tensorflow_internal.so: undefined symbol: cudnnConvolutionBiasActivationForward 

During handling of the above exception, another exception occurred: 

Traceback (most recent call last): 
    File "<stdin>", line 1, in <module> 
    File "/usr/local/lib/python3.5/dist-packages/tensorflow/__init__.py", line 24, in <module> 
    from tensorflow.python import * 
    File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/__init__.py", line 49, in <module> 
    from tensorflow.python import pywrap_tensorflow 
    File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 52, in <module> 
    raise ImportError(msg) 
ImportError: Traceback (most recent call last): 
    File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow.py", line 41, in <module> 
    from tensorflow.python.pywrap_tensorflow_internal import * 
    File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 28, in <module> 
    _pywrap_tensorflow_internal = swig_import_helper() 
    File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/pywrap_tensorflow_internal.py", line 24, in swig_import_helper 
    _mod = imp.load_module('_pywrap_tensorflow_internal', fp, pathname, description) 
    File "/usr/lib/python3.5/imp.py", line 242, in load_module 
    return load_dynamic(name, filename, file) 
    File "/usr/lib/python3.5/imp.py", line 342, in load_dynamic 
    return _load(spec) 
ImportError: /usr/local/lib/python3.5/dist-packages/tensorflow/python/_pywrap_tensorflow_internal.so: undefined symbol: cudnnConvolutionBiasActivationForward 

Fehler beim nativen TensorFlow Laufzeit zu laden.

Siehe https://www.tensorflow.org/install/install_sources#common_installation_problems

für einige der häufigsten Ursachen und Lösungen. Fügen Sie den gesamten Stack-Trace über diese Fehlermeldung hinzu, wenn Sie nach Hilfe fragen.

Systeminfo: Ubuntu 16.04 Cuda 8.0 cudnn 5.1 tensorflow-gpu Version

+0

Es ist keine gute Antwort, aber es sieht so aus, als ob dieses Problem mit Neuinstallation behoben wurde oder Installationen in der Vergangenheit erzwingt: https://github.com/tensorflow/tensorflow/issues/12326 –

Antwort

1

As mentioned here eine Kraft wieder installieren sollte den Trick oder die Herabstufung auf eine niedrigere tensorflow Version tun wird auch funktionieren:

pip3 install tensorflow-gpu --upgrade --force-reinstall 

Eine mögliche Ursache für dieses Problem ist, wenn Sie sowohl Tensorflow-CPU als auch Tensorflow-GPU installiert haben.

Verwandte Themen