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.h1641 typedef struct TF_Library TF_Library; typedef
1654 TF_CAPI_EXPORT extern TF_Library* TF_LoadLibrary(const char* library_filename,
1662 TF_CAPI_EXPORT extern TF_Buffer TF_GetOpList(TF_Library* lib_handle);
1666 TF_CAPI_EXPORT extern void TF_DeleteLibraryHandle(TF_Library* lib_handle);
Dc_api_internal.h73 struct TF_Library { struct
Dc_api.cc977 TF_Library* TF_LoadLibrary(const char* library_filename, TF_Status* status) { in TF_LoadLibrary()
978 TF_Library* lib_handle = new TF_Library; in TF_LoadLibrary()
989 TF_Buffer TF_GetOpList(TF_Library* lib_handle) { return lib_handle->op_list; } in TF_GetOpList()
991 void TF_DeleteLibraryHandle(TF_Library* lib_handle) { in TF_DeleteLibraryHandle()
Dc_api_test.cc195 TF_Library* lib = in TEST()