Commit 45b7eb4c authored by Robert Kimball's avatar Robert Kimball

call static initializers for each backend built

parent cf900aa4
......@@ -109,11 +109,6 @@ shared_ptr<runtime::Backend> runtime::BackendManager::create_backend(const std::
}
auto registry = get_registry();
NGRAPH_INFO << type;
for (auto t : registry)
{
NGRAPH_INFO << t.first;
}
auto it = registry.find(type);
if (it != registry.end())
{
......
......@@ -48,7 +48,6 @@ void runtime::interpreter::static_initialize()
static bool s_is_initialized = false;
if (!s_is_initialized)
{
NGRAPH_INFO << "INTERPRETER static initialize";
s_is_initialized = true;
BackendManager::register_backend("INTERPRETER", get_backend_constructor_pointer());
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment