未验证 提交 c5d76dac 编写于 作者: A alexey-milovidov 提交者: GitHub

Update PipelineExecutor.cpp

上级 c26cc851
......@@ -527,11 +527,14 @@ void PipelineExecutor::finalizeExecution()
bool all_processors_finished = true;
for (auto & node : graph) {
if (node.status != ExecStatus::Finished) { /// Single thread, do not hold mutex
all_processors_finished = false;
break;
}
for (auto & node : graph)
{
if (node.status != ExecStatus::Finished)
{
/// Single thread, do not hold mutex
all_processors_finished = false;
break;
}
}
if (!all_processors_finished)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册