| 139 | } |
| 140 | |
| 141 | string Executor::lastRecvReply() { |
| 142 | CHECK(!active_msg_->task.request()); |
| 143 | CHECK_EQ(active_msg_->task.type(), Task::REPLY); |
| 144 | return active_msg_->task.msg(); |
| 145 | } |
| 146 | |
| 147 | // a simple implementation of the DAG execution engine. |
| 148 | void Executor::run() { |
no test coverage detected