summaryrefslogtreecommitdiff
path: root/runtimes
diff options
context:
space:
mode:
author오형석/On-Device Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>2019-04-17 16:15:33 +0900
committer박세희/On-Device Lab(SR)/Principal Engineer/삼성전자 <saehie.park@samsung.com>2019-04-17 16:15:33 +0900
commit715f762876a951c770f111374d19fa562b2b4969 (patch)
tree9fb5b4ac5a89dccd6cf8d011c0eaa92b41e7b35a /runtimes
parentcef66a00b77d1d0183b67d235986a1bd688c0702 (diff)
downloadnnfw-715f762876a951c770f111374d19fa562b2b4969.tar.gz
nnfw-715f762876a951c770f111374d19fa562b2b4969.tar.bz2
nnfw-715f762876a951c770f111374d19fa562b2b4969.zip
Interpreter ITensor Inherit backend ITensor (#5005)
Interpreter ITensor Inherit backend ITensor for more compatibility with other backends Signed-off-by: Hyeongseok Oh <hseok82.oh@samsung.com>
Diffstat (limited to 'runtimes')
-rw-r--r--runtimes/neurun/core/src/exec/interp/Tensor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtimes/neurun/core/src/exec/interp/Tensor.h b/runtimes/neurun/core/src/exec/interp/Tensor.h
index 0170a9715..2d337fba3 100644
--- a/runtimes/neurun/core/src/exec/interp/Tensor.h
+++ b/runtimes/neurun/core/src/exec/interp/Tensor.h
@@ -23,6 +23,7 @@
#include "util/feature/Coordinate4D.h"
#include "model/operand/Info.h"
+#include "backend/operand/ITensor.h"
namespace neurun
{
@@ -33,9 +34,8 @@ namespace interp
/**
* @brief Interface to handle Tensor in interpreter
- * @note TODO merge or inherit backend::ITensor
*/
-class ITensor
+class ITensor : public backend::operand::ITensor
{
public:
virtual ~ITensor() = default;