diff --git a/mindspore/ccsrc/debug/debugger/debug_graph.proto b/mindspore/ccsrc/debug/debugger/debug_graph.proto index 0930791ac0..9b9a496367 100644 --- a/mindspore/ccsrc/debug/debugger/debug_graph.proto +++ b/mindspore/ccsrc/debug/debugger/debug_graph.proto @@ -228,7 +228,7 @@ message NodeProto { optional uint64 output_i = 7; // for debugger, full name with scope - optional string debug_name = 8; + optional string full_name = 8; } // Models diff --git a/mindspore/ccsrc/debug/debugger/proto_exporter.cc b/mindspore/ccsrc/debug/debugger/proto_exporter.cc index 35e7d906ed..d9c356d989 100644 --- a/mindspore/ccsrc/debug/debugger/proto_exporter.cc +++ b/mindspore/ccsrc/debug/debugger/proto_exporter.cc @@ -431,8 +431,8 @@ void DebuggerProtoExporter::ExportCNode(const FuncGraphPtr &func_graph, const CN node_proto->set_name(std::to_string(apply_idx)); node_proto->set_scope(node->scope()->name()); - // add debug_name for debugger - node_proto->set_debug_name(node->fullname_with_scope()); + // add full_name for debugger + node_proto->set_full_name(node->fullname_with_scope()); // process OP inputs for (size_t i = 1; i < inputs.size(); ++i) {