-
Notifications
You must be signed in to change notification settings - Fork 193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tensorflow.python.framework.errors_impl.NotFoundError #8
Comments
Same problem. |
What OS, gcc version, nvcc version? Did the make process have any warnings or errors? What GPU do you have? Also, I’ve never tried with Python 3, try using Python 2.
I’ll try to repro on Monday once I get that info.
… On Sep 12, 2017, at 7:40 PM, chuchienshu ***@***.***> wrote:
python3 -m src.flownet2.train
Traceback (most recent call last):
File "/usr/lib/python3.5/runpy.py", line 184, in _run_module_as_main
"__main__", mod_spec)
File "/usr/lib/python3.5/runpy.py", line 85, in _run_code
exec(code, run_globals)
File "/home/chuchienshu/tensorflowcode/newflownet/flownet2-tf/src/flownet2/train.py", line 1, in <module>
from ..dataloader import load_batch
File "/home/chuchienshu/tensorflowcode/newflownet/flownet2-tf/src/dataloader.py", line 7, in <module>
tf.resource_loader.get_path_to_datafile("./ops/build/preprocessing.so"))
File "/home/chuchienshu/.local/lib/python3.5/site-packages/tensorflow/python/framework/load_library.py", line 64, in load_op_library
None, None, error_msg, error_code)
tensorflow.python.framework.errors_impl.NotFoundError: /home/chuchienshu/tensorflowcode/newflownet/flownet2-tf/src/./ops/build/preprocessing.so: cannot open shared object file: No such file or directory
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.
|
It seems that tensorflow-gpu 1.3.0 version doesn't work to me. I managed to run the code. For your information, my platform that can run is the following: tensorflow-gpu (1.0.1) |
You can try it under configurations: gcc4.9, python2.7, Tensorflow1.2.0, cuda8.0, cudnn5.1, GTX TitanX. I have tried Tensorflow1.1.0 and Tensorlfow1.0.1, both did't work. Only Tensorflow1.2.0 did work! |
Comment out this part of line 56 in the makefile : "-D_GLIBCXX_USE_CXX11_ABI=0". That works for Tensorflow 1.3, cuda 9, titan v |
the same questions with you |
You can enter "make" command in the terminal under the path of Makefile. Then it will generate the files in need. |
@zxy-HIT @ChenGQ26 |
@yinjunbo |
Hi! I have the same issue and didn't get resolved by commenting out that line. I'm using tf1.7, cuda9.0 python2.7, gcc5.4 and TitanX as GPU. Thanks! |
Make sure you used the same python version to compile (specified in Makefile) and run. |
same problem with Python 2.7, Tensorflow 1.4, Cuda 8.0, Ubuntu 16.04. Tried to comment that line before building but nothing changed. |
I faced the same issue with python3, tf 1.5. Fixed it by following this issue tensorflow/tensorflow#13607 |
TensorFlow 1.2.1 also works, but not > 1.2.1 |
facing the same issues, finally got results #28 |
The text was updated successfully, but these errors were encountered: