From 801625bb36b52502a866d961bd7555638bbb791d Mon Sep 17 00:00:00 2001 From: wjm Date: Tue, 29 Dec 2020 10:32:04 +0800 Subject: [PATCH] fix --- ge/graph/passes/multi_batch_clone_pass.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ge/graph/passes/multi_batch_clone_pass.cc b/ge/graph/passes/multi_batch_clone_pass.cc index d3bf416a..f8451ace 100755 --- a/ge/graph/passes/multi_batch_clone_pass.cc +++ b/ge/graph/passes/multi_batch_clone_pass.cc @@ -488,8 +488,7 @@ Status MultiBatchClonePass::SetMaxShapeToData(const NodePtr &data) { auto shape = data_shape; auto ret = multibatch::CalcShape(data_to_dynamic_info_.at(data_name).at(i), shape); if (ret != SUCCESS) { - GELOGE(ret, "Failed to calculate the batched shape for data node %s, the shapes may not match", - data->GetName().c_str()); + GELOGE(ret, "Failed to calculate the shape for data node %s, the shape may not match", data->GetName().c_str()); return ret; } tensor.SetShape(shape);