| 173 | } |
| 174 | |
| 175 | void CPUDriver::PushGraph(CPUDevice* cpu_dev, DevContext* context) |
| 176 | { |
| 177 | std::vector<cpu_task> task_list; |
| 178 | |
| 179 | cpu_task task; |
| 180 | |
| 181 | task.context = context; |
| 182 | |
| 183 | task_list.emplace_back(task); |
| 184 | |
| 185 | cpu_dev->PushMasterTask(task_list); |
| 186 | } |
| 187 | |
| 188 | bool CPUDriver::Run(Device* dev, void* graph_handle) |
| 189 | { |
nothing calls this directly
no test coverage detected