Browse Source

!638 modify LoadCustAicpuSo

From: @HW_KK
Reviewed-by: @ji_chen,@youui
Signed-off-by: @ji_chen,@youui
tags/v1.2.0
mindspore-ci-bot Gitee 3 years ago
parent
commit
6b1b3f3f83
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      ge/graph/load/new_model_manager/model_manager.cc

+ 2
- 2
ge/graph/load/new_model_manager/model_manager.cc View File

@@ -1265,8 +1265,8 @@ Status ModelManager::LoadCustAicpuSo(const OpDescPtr &op_desc, const string &so_
std::lock_guard<std::mutex> lock(cust_aicpu_mutex_);
CustAICPUKernelPtr aicpu_kernel = op_desc->TryGetExtAttr(OP_EXTATTR_CUSTAICPU_KERNEL, CustAICPUKernelPtr());
if (aicpu_kernel == nullptr) {
GELOGE(INTERNAL_ERROR, "cust aicpu op %s can't find kernel!", op_desc->GetName().c_str());
return INTERNAL_ERROR;
GELOGI("cust aicpu op %s has no corresponding kernel!", op_desc->GetName().c_str());
return SUCCESS;
}

// get current context


Loading…
Cancel
Save