Added a logic to search "TF_AcquireFlexDelegate" function from _pywrap_tensorflow_interpreter_wrapper.pyd library. This CL fixes the GitHub issue #44237. PiperOrigin-RevId: 346241205 Change-Id: I5c77574ad9d4cb794e95d195398d68ecc8fd8752
66 lines
2.3 KiB
C++
66 lines
2.3 KiB
C++
/* Copyright 2020 The TensorFlow Authors. All Rights Reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
==============================================================================*/
|
|
#ifndef TENSORFLOW_LITE_SHARED_LIBRARY_H_
|
|
#define TENSORFLOW_LITE_SHARED_LIBRARY_H_
|
|
|
|
#if defined(_WIN32)
|
|
// Windows does not have dlfcn.h/dlsym, use GetProcAddress() instead.
|
|
#include <windows.h>
|
|
#else
|
|
#include <dlfcn.h>
|
|
#endif // defined(_WIN32)
|
|
|
|
namespace tflite {
|
|
|
|
// SharedLibrary provides a uniform set of APIs across different platforms to
|
|
// handle dynamic library operations
|
|
class SharedLibrary {
|
|
public:
|
|
#if defined(_WIN32)
|
|
static inline void* LoadLibrary(const char* lib) {
|
|
return ::LoadLibrary(lib);
|
|
}
|
|
static inline void* GetLibrarySymbol(void* handle, const char* symbol) {
|
|
return reinterpret_cast<void*>(
|
|
GetProcAddress(static_cast<HMODULE>(handle), symbol));
|
|
}
|
|
// Warning: Unlike dlsym(RTLD_DEFAULT), it doesn't search the symbol from
|
|
// dependent DLLs.
|
|
static inline void* GetSymbol(const char* symbol) {
|
|
return reinterpret_cast<void*>(GetProcAddress(nullptr, symbol));
|
|
}
|
|
static inline int UnLoadLibrary(void* handle) {
|
|
return FreeLibrary(static_cast<HMODULE>(handle));
|
|
}
|
|
static inline const char* GetError() { return "Unknown"; }
|
|
#else
|
|
static inline void* LoadLibrary(const char* lib) {
|
|
return dlopen(lib, RTLD_LAZY | RTLD_LOCAL);
|
|
}
|
|
static inline void* GetLibrarySymbol(void* handle, const char* symbol) {
|
|
return dlsym(handle, symbol);
|
|
}
|
|
static inline void* GetSymbol(const char* symbol) {
|
|
return dlsym(RTLD_DEFAULT, symbol);
|
|
}
|
|
static inline int UnLoadLibrary(void* handle) { return dlclose(handle); }
|
|
static inline const char* GetError() { return dlerror(); }
|
|
#endif // defined(_WIN32)
|
|
};
|
|
|
|
} // namespace tflite
|
|
|
|
#endif // TENSORFLOW_LITE_SHARED_LIBRARY_H_
|