├── .github └── workflows │ ├── macos.yml │ ├── ubuntu.yml │ └── windows.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── NOTICE ├── README.md ├── doc ├── create_lib_file_from_dll_for_windows.md ├── optimizing.md └── prepare_models.md ├── logo.png ├── models └── graph.pb ├── src ├── 3rdparty │ └── scope_guard │ │ ├── LICENSE │ │ └── include │ │ └── scope_guard.hpp ├── allocate_tensor.cpp ├── batch_interface.cpp ├── create_tensor.cpp ├── graph_info.cpp ├── hello_tf.cpp ├── interface.cpp ├── load_graph.cpp ├── session_run.cpp ├── tensor_info.cpp ├── tf_utils.cpp └── tf_utils.hpp └── test ├── 3rdparty └── Catch2 │ ├── LICENSE │ └── catch.hpp ├── CMakeLists.txt └── test.cpp /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/.github/workflows/ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/README.md -------------------------------------------------------------------------------- /doc/create_lib_file_from_dll_for_windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/doc/create_lib_file_from_dll_for_windows.md -------------------------------------------------------------------------------- /doc/optimizing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/doc/optimizing.md -------------------------------------------------------------------------------- /doc/prepare_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/doc/prepare_models.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/logo.png -------------------------------------------------------------------------------- /models/graph.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/models/graph.pb -------------------------------------------------------------------------------- /src/3rdparty/scope_guard/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/src/3rdparty/scope_guard/LICENSE -------------------------------------------------------------------------------- /src/3rdparty/scope_guard/include/scope_guard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/src/3rdparty/scope_guard/include/scope_guard.hpp -------------------------------------------------------------------------------- /src/allocate_tensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/src/allocate_tensor.cpp -------------------------------------------------------------------------------- /src/batch_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/src/batch_interface.cpp -------------------------------------------------------------------------------- /src/create_tensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/src/create_tensor.cpp -------------------------------------------------------------------------------- /src/graph_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/src/graph_info.cpp -------------------------------------------------------------------------------- /src/hello_tf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/src/hello_tf.cpp -------------------------------------------------------------------------------- /src/interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/src/interface.cpp -------------------------------------------------------------------------------- /src/load_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/src/load_graph.cpp -------------------------------------------------------------------------------- /src/session_run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/src/session_run.cpp -------------------------------------------------------------------------------- /src/tensor_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/src/tensor_info.cpp -------------------------------------------------------------------------------- /src/tf_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/src/tf_utils.cpp -------------------------------------------------------------------------------- /src/tf_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/src/tf_utils.hpp -------------------------------------------------------------------------------- /test/3rdparty/Catch2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/test/3rdparty/Catch2/LICENSE -------------------------------------------------------------------------------- /test/3rdparty/Catch2/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/test/3rdparty/Catch2/catch.hpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Neargye/hello_tf_c_api/HEAD/test/test.cpp --------------------------------------------------------------------------------