I read in this post by HediBy that this ROI_POOLING user_op implementation works: LINK
I used bazel build
-c opt //tensorflow/core/user_ops:roi_pooling.so to generate the so file (after installing tensorflow)
But when I use tf.load_op_library to load roi_pooling.so
, I get this weird error:
tensorflow.python.framework.errors.NotFoundError: /home/fishdrop/tensorflow/bazel-bin/tensorflow/core/user_ops/roi_pooling.so: undefined symbol: _Z21ROIPoolForwardLaucherPKffiiiiiiS0_PfPiRKN5Eigen9GpuDeviceE
Any ideas? has anyone else been successful with this user_op?