diff --git a/paddle/fluid/framework/parallel_executor.cc b/paddle/fluid/framework/parallel_executor.cc index 773e5c00742c9fb03e701684142f772336e9705a..ab0d9f72f7b0104ff1958c76b35dcf08ac5726aa 100644 --- a/paddle/fluid/framework/parallel_executor.cc +++ b/paddle/fluid/framework/parallel_executor.cc @@ -748,9 +748,9 @@ void ParallelExecutor::RunOp( auto op_run = [ready_buffer, op, this] { try { - VLOG(10) << op->DebugString() << " " << this; + VLOG(10) << op->DebugString() << " " << op; op->Run(); - VLOG(10) << "Done " << this; + VLOG(10) << "Done " << op; for (auto *ready : *ready_buffer) { *ready = true; } @@ -761,9 +761,7 @@ void ParallelExecutor::RunOp( LOG(FATAL) << "Unknown exception catched"; } }; - VLOG(3) << "Enqueue"; member_->pool_.enqueue(op_run); - VLOG(3) << "Done"; } } // namespace framework } // namespace paddle