From 7c34f730986a1ddf05c8832625664ceaed6cfd92 Mon Sep 17 00:00:00 2001 From: zhaozhixuan Date: Sat, 15 May 2021 15:33:51 +0800 Subject: [PATCH] Add shape range check. --- 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 ff7e4b3a..6e8478d8 100755 --- a/ge/graph/manager/graph_manager.cc +++ b/ge/graph/manager/graph_manager.cc @@ -493,7 +493,7 @@ Status GraphManager::ModifyDataIndex(const Graph &graph, const std::mapsecond.empty()); if (enable_input_shape_range) { REPORT_INNER_ERROR("E19999", "Input data index is invalid when data shape range enabled, please check!"); - GELOGE(GRAPH_PARAM_INVALID, "Input data index is invalid when data shape range enabled."); + GELOGE(GRAPH_PARAM_INVALID, "[COMP][AddGraph]Input data index is invalid when data shape range enabled."); return GRAPH_PARAM_INVALID; } GELOGI("Graph[%s] input data index is invalid, set data index by topo order.", compute_graph->GetName().c_str());