Home
last modified time | relevance | path

Searched refs:TF_Library (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/java/src/main/native/
Dtensorflow_jni.cc41 TF_Library* h = TF_LoadLibrary(cname, status); in Java_org_tensorflow_TensorFlow_libraryLoad()
51 TF_DeleteLibraryHandle(reinterpret_cast<TF_Library*>(handle)); in Java_org_tensorflow_TensorFlow_libraryDelete()
57 TF_Buffer buf = TF_GetOpList(reinterpret_cast<TF_Library*>(handle)); in Java_org_tensorflow_TensorFlow_libraryOpList()
/external/tensorflow/tensorflow/c/
Dc_api.h1513 typedef struct TF_Library TF_Library; typedef
1526 TF_CAPI_EXPORT extern TF_Library* TF_LoadLibrary(const char* library_filename,
1534 TF_CAPI_EXPORT extern TF_Buffer TF_GetOpList(TF_Library* lib_handle);
1538 TF_CAPI_EXPORT extern void TF_DeleteLibraryHandle(TF_Library* lib_handle);
Dc_api_internal.h69 struct TF_Library { struct
Dc_api.cc876 TF_Library* TF_LoadLibrary(const char* library_filename, TF_Status* status) { in TF_LoadLibrary()
877 TF_Library* lib_handle = new TF_Library; in TF_LoadLibrary()
888 TF_Buffer TF_GetOpList(TF_Library* lib_handle) { return lib_handle->op_list; } in TF_GetOpList()
890 void TF_DeleteLibraryHandle(TF_Library* lib_handle) { in TF_DeleteLibraryHandle()
Dc_api_test.cc189 TF_Library* lib = in TEST()
2187 TF_Library* lib = in TEST()
2221 TF_Library* lib = in TEST()