From e5402ea2646ca38fa7a5cc8e6d8b05017b9c34c8 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 26 Oct 2020 21:10:00 +0800 Subject: [PATCH] Support for custom operator. --- ge/graph/load/new_model_manager/model_manager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ge/graph/load/new_model_manager/model_manager.cc b/ge/graph/load/new_model_manager/model_manager.cc index bdcc40f9..8d4cd01e 100755 --- a/ge/graph/load/new_model_manager/model_manager.cc +++ b/ge/graph/load/new_model_manager/model_manager.cc @@ -1130,7 +1130,7 @@ Status ModelManager::LoadCustAicpuSo(const OpDescPtr op_desc, const string &so_n Status ModelManager::ClearAICPUSo(void *ctx) { auto ctx_id = reinterpret_cast(ctx); - GELOGI("ClearAICPUSo in. resource_id = 0x%lx", static_cast(ctx_id)); + GELOGI("ClearAICPUSo in. resource id = 0x%lx", static_cast(ctx_id)); std::lock_guard lock(cust_aicpu_mutex_); auto it = cust_aicpu_so_.find(ctx_id); if (it == cust_aicpu_so_.end()) {