From 535e4355acf097808d465ddf419cfef83bc31eb2 Mon Sep 17 00:00:00 2001 From: wangxiaotian22 Date: Sat, 27 Feb 2021 16:37:00 +0800 Subject: [PATCH] fix compile error --- ge/graph/manager/graph_manager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ge/graph/manager/graph_manager.cc b/ge/graph/manager/graph_manager.cc index 6d1dcb04..4c5d99c2 100755 --- a/ge/graph/manager/graph_manager.cc +++ b/ge/graph/manager/graph_manager.cc @@ -293,7 +293,7 @@ Status GraphManager::InitDynamicParams(ComputeGraphPtr &compute_graph) { return FAILED; } if ((op_desc->GetType() == DATA) || (op_type == kGetNextName)) { - GELOGI("Need to process multi batch for compute graph. op_type:%s", op_desc->GetType(),c_str()); + GELOGI("Need to process multi batch for compute graph. op_type:%s", op_desc->GetType().c_str()); GetLocalOmgContext().need_multi_batch = true; break; }