From ec90d7afebb88b548a8d03793443d84ea6f6606c Mon Sep 17 00:00:00 2001 From: zhangxiaokun Date: Mon, 4 Jan 2021 14:22:02 +0800 Subject: [PATCH] Eliminate data_op_list_ --- ge/graph/load/new_model_manager/davinci_model.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ge/graph/load/new_model_manager/davinci_model.cc b/ge/graph/load/new_model_manager/davinci_model.cc index b47dee19..45f269b6 100755 --- a/ge/graph/load/new_model_manager/davinci_model.cc +++ b/ge/graph/load/new_model_manager/davinci_model.cc @@ -1841,8 +1841,8 @@ Status DavinciModel::InitAippType(uint32_t index, const OpDescPtr &op_desc, cons Status DavinciModel::GetAippType(uint32_t index, InputAippType &aipp_type, size_t &aipp_index) const { const auto it = aipp_type_list_.find(index); if (it == aipp_type_list_.end()) { - GELOGE(ACL_ERROR_GE_AIPP_NOT_EXIST, "Can not find aipp data node from index %u", index); - return ACL_ERROR_GE_AIPP_NOT_EXIST; + GELOGW("There is no aipp releated info with index %u.", index); + return SUCCESS; } aipp_type = it->second.first;