Skip to content

Commit a6a7b6f

Browse files
committed
code cleanup
1 parent d599a66 commit a6a7b6f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

paddle/fluid/framework/details/threaded_ssa_graph_executor.cc

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,11 +189,9 @@ void ThreadedSSAGraphExecutor::RunOp(
189189
BlockingQueue<VarHandleBase *> *ready_var_q, details::OpHandleBase *op) {
190190
auto op_run = [ready_var_q, op, this] {
191191
try {
192-
VLOG(10) << "PE start "
193-
<< " " << op->Name() << " : " << op->DebugString();
192+
VLOG(10) << op << " " << op->Name() << " : " << op->DebugString();
194193
op->Run(strategy_.use_event_);
195-
VLOG(10) << "PE end "
196-
<< " " << op->Name() << " Done ";
194+
VLOG(10) << op << " " << op->Name() << " Done ";
197195
running_ops_--;
198196
ready_var_q->Extend(op->Outputs());
199197
VLOG(10) << op << " " << op->Name() << "Signal posted";

tools/codestyle/docstring_checker.pyc

-11.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)