Remove wait

helinwang-patch-1
Yu Yang 7 years ago
parent d2cb3790e9
commit 8a9de67e17

@ -813,18 +813,6 @@ void ParallelExecutor::Run(const std::vector<std::string> &fetch_tensors,
fetch_ops.clear();
*member_->global_scope_->Var(fetched_var_name)->GetMutable<LoDTensorArray>() =
fetched_data->tensors_;
VLOG(3) << "Before Wait";
// FIXME:
// It could be optimized by using multiple events in an operator.
// Manually sync computation during iter.
for (auto &s : member_->communication_streams_) {
s.second.ctx_->Wait();
}
for (auto &p : member_->places_) {
platform::DeviceContextPool::Instance().Get(p)->Wait();
}
VLOG(3) << "Done wait";
}
void ParallelExecutor::RunOp(

Loading…
Cancel
Save