-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Undefined symbol in roi_pooling.so #50
Comments
update g++ line as below: (add -D_GLIBCXX_USE_CXX11_ABI=0 )
|
and re-run make |
@civilman628 Thank you, that worked perfectly! |
@civilman628 in what file should I add that argument? |
Found it: make.sh file in lib folder |
But now I get this error: g++: error: roi_pooling_op.cc: No such file or directory Running make without @civilman628 's code it finishes without issues |
Nevermind, I was mixing roi_pooling_op section with psroi_pooling_op... |
@mathetes87 Hi, I got the same problem ,so how did you solve this issue at last? |
@showaichuan If you look in the file make.sh, there are 2 sections, one for roi_pooling_op and one for psroi_pooling_op. My error was that I was editing the wrong one. Try looking very carefully so as to edit only the one corresponding to roi_pooling_op |
@civilman628 thank you very much! I run the demo.py successfully! |
@civilman628 thank you very much! |
@civilman628 Hi, I added "-D_GLIBCXX_USE_CXX11_ABI=0" as you said. But still have the same problem. How can fix it? |
Me too. Same problem.. |
Yeah, Even I faced the same problem, adding the extra argument in g++ is not helping. I tried adding up the same flag in g++ in the else branch in make.sh but still does not help. |
It might help |
but my make.sh file has no psroi_pooling_op section。so how to sovle the problem? |
@civilman628 Thanks, It works for me! |
no matter what tensorflow you have, what gcc you this will work : |
I'm trying to run the demo following the instructions in readme, however, when I run the command
I get the error below:
CUDA: 8.0
CuDNN: 5
Python: 2.7.12
Tensorflow: 0.12.0-rc1
GPU: NVidia GeForce 750M (sm_30 architecture)
Due to my setup above, I modified
CUDA_PATH
inmake.sh
file to be like this:and the
nvcc
instruction to be like this:Am I doing something wrong?
Could you please help me with running the demo properly?
The text was updated successfully, but these errors were encountered: