tensorflow C API static library

Viewed 299

Can I build/get static library (.a files instead of .so files) of tensorflow C API? I need to include/link tensorflow c api in my C++ software xyz and then I build shared library xyz.so that will be sent to other party. The other party should be able to run xyz.so without installing/building tensorflow.

1 Answers

Download tensorflow c api and link .so files using CMakeLists.txt file.

Related