| 38 | } |
| 39 | |
| 40 | Status AsyncExecution::BlockUntilDone() const { |
| 41 | for (auto& stream : streams_) { |
| 42 | TF_RETURN_IF_ERROR(stream->BlockHostUntilDone()); |
| 43 | } |
| 44 | return Status::OK(); |
| 45 | } |
| 46 | |
| 47 | ExecutionTracker::ExecutionTracker() : next_handle_(1) {} |
| 48 |
no test coverage detected