Drop SetInputTensorParam/SetOutputTensorParam callbacks
authorInki Dae <inki.dae@samsung.com>
Wed, 5 Feb 2020 09:32:25 +0000 (18:32 +0900)
committerInki Dae <inki.dae@samsung.com>
Tue, 14 Apr 2020 00:42:53 +0000 (09:42 +0900)
Change-Id: I7348440bc489490e1ce42c7fe908453b825327d8
Signed-off-by: Inki Dae <inki.dae@samsung.com>
common/inference_engine_common_impl.cpp
include/inference_engine_common.h
include/inference_engine_common_impl.h

index 95088d6dcb1320d0f4ee8ac3a93dc9fd0fe505b5..4b98b5e4a3a4ed04dcdefc93875e4b18ce16c078 100644 (file)
@@ -143,16 +143,6 @@ void InferenceEngineCommon::UnbindBackend(void)
     LOGW("LEAVE");
 }
 
-int InferenceEngineCommon::SetInputTensorParam()
-{
-    return INFERENCE_ENGINE_ERROR_NOT_SUPPORTED;
-}
-
-int InferenceEngineCommon::SetOutputTensorParam()
-{
-    return INFERENCE_ENGINE_ERROR_NOT_SUPPORTED;
-}
-
 int InferenceEngineCommon::SetOutputTensorParamNodes(std::vector<std::string> nodes)
 {
     LOGI("ENTER");
index 7d1f9d86dac7701903f0174690a2f11fc210028d..d39e57f08dfa36100f9c0fe581d5092f9ed6ed38 100644 (file)
@@ -30,13 +30,6 @@ public:
 
     virtual ~IInferenceEngineCommon() {};
 
-    /**
-     * @brief Set parameters for an input tensor. Deprecated.
-     *
-     * @since_tizen 5.5
-     */
-    virtual int SetInputTensorParam() = 0;
-
     /**
      * @brief Set an input node name. Deprecated.
      *
@@ -44,13 +37,6 @@ public:
      */
     virtual int SetInputTensorParamNode(std::string node) = 0;
 
-    /**
-     * @brief Set parameters for output tensors. Deprecated.
-     *
-     * @since_tizen 5.5
-     */
-    virtual int SetOutputTensorParam() = 0;
-
     /**
      * @brief Set output nodes' names. Deprecated.
      *
index f89bd87f369a2ff4d5b6a4ba65b38c31a20cde24..c6910d843db4c085c064ebaa140c6db2b4b0d957 100644 (file)
@@ -59,14 +59,6 @@ public:
 
     void UnbindBackend(void);
 
-    /**
-     * @brief Set parameters for an input tensor. Deprecated.
-     * @details Wrapper of class IInferenceEngineCommon
-     *
-     * @since_tizen 5.5
-     */
-    int SetInputTensorParam();
-
     /**
      * @brief Set an input node name. Deprecated.
      *
@@ -74,13 +66,6 @@ public:
      */
     int SetInputTensorParamNode(std::string node);
 
-    /**
-     * @brief Set parameters for output tensors. Deprecated.
-     *
-     * @since_tizen 5.5
-     */
-    int SetOutputTensorParam();
-
     /**
      * @brief Set output nodes' names. Deprecated.
      *