-
Notifications
You must be signed in to change notification settings - Fork 53
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
Question about the psroi_pooling.so #4
Comments
Which version of gcc do you use? Maybe you should check |
gcc 5.4 Let me try it ,Thank you a lot |
I replace the newest make.sh and uncomment the code anout gcc-5 , it indeed does work,which solve the question of psroi_pooling.so and roi_pooling_layer.so ,but when it comes to the last , deform_conv_layer, it show the error. /home/gpu2/OWFO/TF_Deformable_Net/lib/psroi_pooling_layer/psroi_pooling.so I also check the code of gcc5-built of deform_conv_layer in make.sh , do not find the problem |
@feitiandemiaomi Sorry I have no idea what's going on on your side, others came across this issue and reinstall gcc4 and solved, or merely through add this flag. Unfortunately I have no environment right now for me to test it on gcc5. |
@feitiandemiaomi Hi, have you worked out where the problem is? I have updated readme to include a workaround given by others in another issue, which solves a very similiar problem. |
Thank you a lot, I was worrying about it, Yesterday, I try modifying the make.sh and compiled ,but there were still some errors. |
I also have this error. I have followed all of the instructions in the readme, but my psroi_pooling.so always have undefined symbol. |
Hi, Thank you for your amazing work
According to the guide ,When I run the demo,I meet an issue following:
gpu2@gpu2-PowerEdge-R730:~/OWFO/TF_Deformable_Net$ python ./faster_rcnn/demo.py --model mypath
I tensorflow/stream_executor/dso_loader.cc:135] successfully opened CUDA library libcublas.so.8.0 locally
I tensorflow/stream_executor/dso_loader.cc:135] successfully opened CUDA library libcudnn.so.5 locally
I tensorflow/stream_executor/dso_loader.cc:135] successfully opened CUDA library libcufft.so.8.0 locally
I tensorflow/stream_executor/dso_loader.cc:135] successfully opened CUDA library libcuda.so.1 locally
I tensorflow/stream_executor/dso_loader.cc:135] successfully opened CUDA library libcurand.so.8.0 locally
filename: /home/gpu2/OWFO/TF_Deformable_Net/lib/psroi_pooling_layer/psroi_pooling.so
/home/gpu2/OWFO/TF_Deformable_Net/lib/psroi_pooling_layer/psroi_pooling.so
Traceback (most recent call last):
File "./faster_rcnn/demo.py", line 21, in
from lib.networks.factory import get_network
File "/home/gpu2/OWFO/TF_Deformable_Net/lib/networks/init.py", line 8, in
from .VGGnet_train import VGGnet_train
File "/home/gpu2/OWFO/TF_Deformable_Net/lib/networks/VGGnet_train.py", line 2, in
from .network import Network
File "/home/gpu2/OWFO/TF_Deformable_Net/lib/networks/network.py", line 11, in
from ..psroi_pooling_layer import psroi_pooling_op as psroi_pooling_op
File "/home/gpu2/OWFO/TF_Deformable_Net/lib/psroi_pooling_layer/psroi_pooling_op.py", line 8, in
_psroi_pooling_module = tf.load_op_library(filename)
File "/home/gpu2/anaconda3/lib/python3.6/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/gpu2/OWFO/TF_Deformable_Net/lib/psroi_pooling_layer/psroi_pooling.so: undefined symbol: _ZN10tensorflow7strings6StrCatB5cxx11ERKNS0_8AlphaNumE
And the other operating ,such training and testing,the same error as above, I see your description about installation ,I wonder if I need do more about installation ,especially about the psroi_pooling
The text was updated successfully, but these errors were encountered: