From 9a3cf5e90d46e0075bef0198ec82cff845aa1d83 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=9D=B4=ED=95=9C=EC=A2=85/On-Device=20Lab=28SR=29/Enginee?= =?utf8?q?r/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Fri, 15 Nov 2019 17:22:09 +0900 Subject: [PATCH] [neurun] Fix indentation of DataflowExecutor (#8966) This commit fixes indentation of DataflowExecutor Signed-off-by: Hanjoung Lee --- runtime/neurun/core/src/exec/DataflowExecutor.cc | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/runtime/neurun/core/src/exec/DataflowExecutor.cc b/runtime/neurun/core/src/exec/DataflowExecutor.cc index 028a038..dd0f37d 100644 --- a/runtime/neurun/core/src/exec/DataflowExecutor.cc +++ b/runtime/neurun/core/src/exec/DataflowExecutor.cc @@ -143,13 +143,11 @@ void DataflowExecutor::executeImpl() } assert(!_ready_jobs.empty()); // Cannot begin if there is no initial jobs bool is_profiling = util::getConfigBool(util::config::PROFILING_MODE); - // TODO Fix indentation + + // Notifiy Execution Begin + for (auto &o : _observers) { - // Notifiy Execution Begin - for (auto &o : _observers) - { - o->handleBegin(this); - } + o->handleBegin(this); } while (!_ready_jobs.empty()) -- 2.7.4