custom-op
custom-op copied to clipboard
tensorflow.python.framework.errors_impl.NotFoundError: IVS/IVS_conv/cc/ops/_ivs_conv_ops.so: undefined symbol: _ZN10tensorflow7functor10DeepConv2DIN5Eigen16ThreadPoolDeviceEfEclEPNS_15OpKernelContextERKNS_10Conv2DArgsEPKfSB_Pf error
I use the Makefile to generate the .so file.
I tried to load the custom op library, but I get the following error:

Hello, I have the same problem as you, but the.so file cannot be opened for modification. How do you solve it?
You can use c++filt to demangle that name and see which piece of code is missing. It looks similar to tensorflow::functor::DeepConv2D. [Why didn't you copy-paste the actual text, but added a screenshot?]
If you don't manage to link in that symbol, you could just include the related source files from the TensorFlow sources, of course.
I use the Makefile to generate the .so file. I tried to load the custom op library, but I get the following error:
Same problem, any solution?