[neurun] Fix indentation of DataflowExecutor (#8966)
author이한종/On-Device Lab(SR)/Engineer/삼성전자 <hanjoung.lee@samsung.com>
Fri, 15 Nov 2019 08:22:09 +0000 (17:22 +0900)
committer이춘석/On-Device Lab(SR)/Staff Engineer/삼성전자 <chunseok.lee@samsung.com>
Fri, 15 Nov 2019 08:22:09 +0000 (17:22 +0900)
This commit fixes indentation of DataflowExecutor

Signed-off-by: Hanjoung Lee <hanjoung.lee@samsung.com>
runtime/neurun/core/src/exec/DataflowExecutor.cc

index 028a038..dd0f37d 100644 (file)
@@ -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())