Add tutorial and sample code for TensorFlow plugin development by jzhoulon · Pull Request #352 · tensorflow/community (original) (raw)
Hi @PatriceVignola,
Yes, here is the right place to ask.
TensorFlow doesn't exactly look for a package named tensorflow_plugins
, it's just going to look for shared libraries (.so files for linux) in a folder named tensorflow-plugins. That folder can have multiple shared libraries from multiple plugin packages, e.g., apu.so, bpu.so, dpu.so, etc.
I think the current pip-package generation script in this tutorial puts more than just the shared library file into the tensorflow-plugins
folder when the package is installed. So it might need some adjustments.