提交 a6a7b6f1 编写于 作者: Y Yancey1989

code cleanup

上级 d599a66f
...@@ -189,11 +189,9 @@ void ThreadedSSAGraphExecutor::RunOp( ...@@ -189,11 +189,9 @@ void ThreadedSSAGraphExecutor::RunOp(
BlockingQueue<VarHandleBase *> *ready_var_q, details::OpHandleBase *op) { BlockingQueue<VarHandleBase *> *ready_var_q, details::OpHandleBase *op) {
auto op_run = [ready_var_q, op, this] { auto op_run = [ready_var_q, op, this] {
try { try {
VLOG(10) << "PE start " VLOG(10) << op << " " << op->Name() << " : " << op->DebugString();
<< " " << op->Name() << " : " << op->DebugString();
op->Run(strategy_.use_event_); op->Run(strategy_.use_event_);
VLOG(10) << "PE end " VLOG(10) << op << " " << op->Name() << " Done ";
<< " " << op->Name() << " Done ";
running_ops_--; running_ops_--;
ready_var_q->Extend(op->Outputs()); ready_var_q->Extend(op->Outputs());
VLOG(10) << op << " " << op->Name() << "Signal posted"; VLOG(10) << op << " " << op->Name() << "Signal posted";
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册