[neurun] Remove unused internal::Model (#2284)
author이한종/동작제어Lab(SR)/Engineer/삼성전자 <hanjoung.lee@samsung.com>
Tue, 14 Aug 2018 02:03:32 +0000 (11:03 +0900)
committer오형석/동작제어Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Tue, 14 Aug 2018 02:03:32 +0000 (11:03 +0900)
Now that we replace Model with Graph IR, Model is unused anymore.

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

index b852bac..9d1ba97 100644 (file)
@@ -302,32 +302,4 @@ private:
 } // namespace tflite
 } // namespace internal
 
-namespace internal
-{
-namespace tflite
-{
-
-class Model
-{
-public:
-  operand::Set &operands(void) { return _operands; }
-  const operand::Set &operands(void) const { return _operands; }
-
-public:
-  op::Sequence &operations(void) { return _operations; }
-  const op::Sequence &operations(void) const { return _operations; }
-
-private:
-  operand::Set _operands;
-  op::Sequence _operations;
-
-public:
-  // TODO Hide these fields
-  std::vector<operand::Index> inputs;
-  std::vector<operand::Index> outputs;
-};
-
-} // namespace tflite
-} // namespace internal
-
 #endif // __INTERNAL_MODEL_H__