| 97 | } |
| 98 | |
| 99 | void ModelMdl::run_model() { |
| 100 | mgb_assert( |
| 101 | m_asyc_exec != nullptr, |
| 102 | "empty asychronous function to execute after graph compiled"); |
| 103 | m_asyc_exec->execute(); |
| 104 | } |
| 105 | |
| 106 | void ModelMdl::wait() { |
| 107 | m_asyc_exec->wait(); |
no test coverage detected