| 83 | } |
| 84 | |
| 85 | bool CPUExecutor::DevRun(void* graph_handle) |
| 86 | { |
| 87 | auto f = std::bind(&CPUExecutor::OnSubgraphDone, this, std::placeholders::_1, std::placeholders::_2); |
| 88 | |
| 89 | backend_dev_->SetGraphDoneHook(graph_handle, dev_graph_cb_t(f)); |
| 90 | |
| 91 | return backend_dev_->Run(graph_handle); |
| 92 | } |
| 93 | |
| 94 | bool CPUExecutor::DevSyncRun(void* graph_handle) |
| 95 | { |
nothing calls this directly
no test coverage detected