Commit d687c08f authored by Robert Kimball's avatar Robert Kimball

wip

parent f5a24919
......@@ -27,6 +27,9 @@ using namespace ngraph;
runtime::Backend::~Backend()
{
NGRAPH_INFO;
async_thread_stop();
NGRAPH_INFO;
}
std::shared_ptr<ngraph::Node> runtime::Backend::get_backend_op(const std::string& op_name, ...)
......@@ -103,6 +106,7 @@ runtime::Backend::AsyncEvent::AsyncEvent(Type type,
, m_outputs{nullptr}
, m_inputs{nullptr}
{
(void)m_buffer_number;
}
runtime::Backend::AsyncEvent::AsyncEvent(size_t buffer_number,
......@@ -117,6 +121,7 @@ runtime::Backend::AsyncEvent::AsyncEvent(size_t buffer_number,
, m_outputs{&outputs}
, m_inputs{&inputs}
{
(void)m_buffer_number;
}
future<void>
......
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