Open moorage opened 6 years ago
Try the new version, I had to force _pywrap_tensorflow_internal
to be linked to the binaries, because it is left out by the linker since TF 1.5+ (or so).
That's because the library contains no directly used symbols from _pywrap_tensorflow_internal
, but there are some globals that are needed, which the linker doesn't know.
So give it a try and let me know.
And, moreover, if you're buulding TF yourself, you might consider not using the pip TF. New version of tensorflow_ros allows you to link against a custom build of TF.
I'm on Ubuntu 16.04, and needed to compile tensorflow-gpu because of the newer nvidia drivers and cuda toolkit on this machine.
On other machines with a normal
pip
tensorflow
install, the linking works perfectly. However, on this machine, I get:Note: on both the working machine and this non-working machine, we also get:
Is this related to ABI somehow? Any ideas how we might debug this? Thank you!!