From: 이한종/On-Device Lab(SR)/Engineer/삼성전자 Date: Fri, 8 Mar 2019 07:09:59 +0000 (+0900) Subject: [neurun] Correct header inclusions in Executor (#4618) X-Git-Tag: submit/tizen/20190325.013700~117 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=318ec3b904826af20d587abb8568c2b79d166f81;p=platform%2Fcore%2Fml%2Fnnfw.git [neurun] Correct header inclusions in Executor (#4618) - `BackendResolver` is not needed - Plan is required for `Executor`, not `IExecutor` Signed-off-by: Hanjoung Lee --- diff --git a/runtimes/neurun/src/exec/Executor.h b/runtimes/neurun/src/exec/Executor.h index 5555beb..b20d449 100644 --- a/runtimes/neurun/src/exec/Executor.h +++ b/runtimes/neurun/src/exec/Executor.h @@ -23,6 +23,7 @@ #define __NEURUN_EXEC_EXECUTOR_H_ #include "ExecutorBase.h" +#include "compiler/Plan.h" namespace neurun { diff --git a/runtimes/neurun/src/exec/IExecutor.h b/runtimes/neurun/src/exec/IExecutor.h index 6b25a52..0c03843 100644 --- a/runtimes/neurun/src/exec/IExecutor.h +++ b/runtimes/neurun/src/exec/IExecutor.h @@ -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 {