From 84cf00a2379dd1a459f0f23e1653562bc670daf6 Mon Sep 17 00:00:00 2001 From: Inki Dae Date: Wed, 5 Feb 2020 18:32:25 +0900 Subject: [PATCH] Drop SetInputTensorParam/SetOutputTensorParam callbacks Change-Id: I7348440bc489490e1ce42c7fe908453b825327d8 Signed-off-by: Inki Dae --- common/inference_engine_common_impl.cpp | 10 ---------- include/inference_engine_common.h | 14 -------------- include/inference_engine_common_impl.h | 15 --------------- 3 files changed, 39 deletions(-) diff --git a/common/inference_engine_common_impl.cpp b/common/inference_engine_common_impl.cpp index 95088d6..4b98b5e 100644 --- a/common/inference_engine_common_impl.cpp +++ b/common/inference_engine_common_impl.cpp @@ -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 nodes) { LOGI("ENTER"); diff --git a/include/inference_engine_common.h b/include/inference_engine_common.h index 7d1f9d8..d39e57f 100644 --- a/include/inference_engine_common.h +++ b/include/inference_engine_common.h @@ -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. * diff --git a/include/inference_engine_common_impl.h b/include/inference_engine_common_impl.h index f89bd87..c6910d8 100644 --- a/include/inference_engine_common_impl.h +++ b/include/inference_engine_common_impl.h @@ -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. * -- 2.34.1