From babeb9763c410cca3ae53c1bf0956b045e57548d Mon Sep 17 00:00:00 2001 From: Logan Weber Date: Tue, 12 Nov 2019 09:45:28 -0800 Subject: [PATCH] Fix rebase artifact --- src/runtime/micro/micro_module.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/runtime/micro/micro_module.cc b/src/runtime/micro/micro_module.cc index 09834f166c21..4a41d4bca28f 100644 --- a/src/runtime/micro/micro_module.cc +++ b/src/runtime/micro/micro_module.cc @@ -78,7 +78,7 @@ class MicroWrappedFunc { private: /*! \brief reference to the session for this function (to keep the session alive) */ - std::shared_ptr session_; + ObjectPtr session_; /*! \brief offset of the function to be called */ DevPtr func_ptr_; }; @@ -86,7 +86,6 @@ class MicroWrappedFunc { PackedFunc MicroModuleNode::GetFunction( const std::string& name, const ObjectPtr& sptr_to_self) { - std::cout << "[MicroModuleNode::GetFunction(name=" << name << ")]" << std::endl; DevPtr func_ptr; if (name == tvm::runtime::symbol::tvm_module_main) { if (symbol_map_.HasSymbol(tvm::runtime::symbol::tvm_module_main)) {