[neurun] Correct header inclusions in Executor (#4618)
author이한종/On-Device Lab(SR)/Engineer/삼성전자 <hanjoung.lee@samsung.com>
Fri, 8 Mar 2019 07:09:59 +0000 (16:09 +0900)
committer박세희/On-Device Lab(SR)/Principal Engineer/삼성전자 <saehie.park@samsung.com>
Fri, 8 Mar 2019 07:09:59 +0000 (16:09 +0900)
- `BackendResolver` is not needed
- Plan is required for `Executor`, not `IExecutor`

Signed-off-by: Hanjoung Lee <hanjoung.lee@samsung.com>
runtimes/neurun/src/exec/Executor.h
runtimes/neurun/src/exec/IExecutor.h

index 5555beb..b20d449 100644 (file)
@@ -23,6 +23,7 @@
 #define __NEURUN_EXEC_EXECUTOR_H_
 
 #include "ExecutorBase.h"
+#include "compiler/Plan.h"
 
 namespace neurun
 {
index 6b25a52..0c03843 100644 (file)
@@ -21,7 +21,7 @@
 #ifndef __NEURUN_EXEC_I_EXECUTOR_H_
 #define __NEURUN_EXEC_I_EXECUTOR_H_
 
-#include "compiler/Plan.h"
+#include "model/Model.h"
 
 namespace neurun
 {