Re: [apache/tvm] [VOTE] Establish TVM Unity Connection Technical Strategy (Issue #12651)
+1 -- Reply to this email directly or view it on GitHub: https://github.com/apache/tvm/issues/12651#issuecomment-1255424901 You are receiving this because you commented. Message ID:
[apache/tvm] [Runtime] Release temp param buffer after creating graph executor. (PR #12881)
```c++ Module GraphExecutorFactory::ExecutorCreate(const std::vector& devs) { auto exec = make_object (); exec->Init(this->graph_json_, this->imports_[0], devs, PackedFunc()); // set params SetParams(exec.get(), this->params_); return Module(exec); } ``` In the code