summaryrefslogtreecommitdiff
path: root/runtime/neurun/core/src/backend/BackendManager.cc
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/neurun/core/src/backend/BackendManager.cc')
-rw-r--r--runtime/neurun/core/src/backend/BackendManager.cc150
1 files changed, 0 insertions, 150 deletions
diff --git a/runtime/neurun/core/src/backend/BackendManager.cc b/runtime/neurun/core/src/backend/BackendManager.cc
deleted file mode 100644
index 32086e8b6..000000000
--- a/runtime/neurun/core/src/backend/BackendManager.cc
+++ /dev/null
@@ -1,150 +0,0 @@
-/*
- * Copyright (c) 2018 Samsung Electronics Co., Ltd. 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.
- */
-
-#include <memory>
-#include <dlfcn.h>
-#include "BackendManager.h"
-
-#include "backend/Backend.h"
-#include "backend/IConfig.h"
-#include "util/logging.h"
-#include "util/ConfigSource.h"
-#include "misc/string_helpers.h"
-
-namespace neurun
-{
-namespace backend
-{
-
-BackendManager &BackendManager::get()
-{
- static BackendManager object;
- return object;
-}
-
-template <typename T, class... Types>
-void BackendManager::loadObjectFromPlugin(std::shared_ptr<T> &object_of_plugin_class,
- const std::string obj_creator_func_name, void *handle,
- Types &&... args)
-{
- T *(*allocate_obj)(Types && ... Args);
- // load object creator function
- allocate_obj = (T * (*)(Types && ... Args))dlsym(handle, obj_creator_func_name.c_str());
- if (allocate_obj == nullptr)
- {
- fprintf(stderr, "BackendManager: unable to open function %s: %s\n",
- obj_creator_func_name.c_str(), dlerror());
- abort();
- }
-
- object_of_plugin_class.reset(allocate_obj(args...));
-}
-
-void BackendManager::loadBackend(const std::string &backend)
-{
- const std::string backend_plugin = "libbackend_" + backend + ".so";
- void *handle = dlopen(backend_plugin.c_str(), RTLD_LAZY | RTLD_LOCAL);
- if (handle == nullptr)
- {
- VERBOSE(BackendManager::loadBackend) << "loadBackend failed to load plugin of "
- << backend.c_str() << " backend: " << dlerror()
- << std::endl;
- return;
- }
-
- VERBOSE(BackendManager::loadBackend) << "loaded " << backend_plugin << " as a plugin of "
- << backend << " backend\n";
-
- {
- // load object creator function
- auto backend_create = (backend_create_t)dlsym(handle, "neurun_backend_create");
- if (backend_create == nullptr)
- {
- fprintf(stderr, "BackendManager: unable to open function neurun_backend_create : %s\n",
- dlerror());
- abort();
- }
-
- // load object creator function
- auto backend_destroy = (backend_destroy_t)dlsym(handle, "neurun_backend_destroy");
- if (backend_destroy == nullptr)
- {
- fprintf(stderr, "BackendManager: unable to open function neurun_backend_destroy : %s\n",
- dlerror());
- abort();
- }
-
- auto backend_object =
- std::unique_ptr<backend::Backend, backend_destroy_t>(backend_create(), backend_destroy);
- auto backend_object_raw = backend_object.get();
- bool initialized = backend_object->config()->initialize(); // Call initialize here?
- if (!initialized)
- {
- VERBOSE(BackendManager::loadBackend)
- << backend.c_str() << " backend initialization failed. Don't use this backend"
- << std::endl;
- dlclose(handle);
- return;
- }
- _gen_map.emplace(backend_object->config()->id(), std::move(backend_object));
- _available_backends.push_back(backend_object_raw);
- }
-
- // Save backend handle (avoid warning by handle lost without dlclose())
- auto u_handle = std::unique_ptr<void, dlhandle_destroy_t>{handle, [](void *h) { dlclose(h); }};
- _handle_map.emplace(backend, std::move(u_handle));
-}
-
-BackendManager::BackendManager()
-{
- const auto backends = util::getConfigString(util::config::BACKENDS);
- for (auto &backend_id : nnfw::misc::split(backends, ';'))
- {
- loadBackend(backend_id);
- }
-
- // No loaded backend
- if (_available_backends.empty())
- {
- VERBOSE(BackendManager::loadBackend) << "There is no loaded backend\n";
- abort();
- }
-}
-
-Backend *BackendManager::get(const std::string &key)
-{
- if (_gen_map.find(key) != _gen_map.end())
- {
- return _gen_map.at(key).get();
- }
-
- return nullptr;
-}
-
-const Backend *BackendManager::get(const std::string &key) const
-{
- if (_gen_map.find(key) != _gen_map.end())
- {
- return _gen_map.at(key).get();
- }
-
- return nullptr;
-}
-
-const Backend *BackendManager::getDefault() const { return get("cpu"); }
-
-} // namespace backend
-} // namespace neurun