diff --git a/mindspore/ccsrc/device/ascend/profiling/profiling_utils.cc b/mindspore/ccsrc/device/ascend/profiling/profiling_utils.cc index d8f2504d6cb33afcf0446f840626f9d9c720f355..62e18793b2cff182b3dd7210c3f1f035bec71e31 100644 --- a/mindspore/ccsrc/device/ascend/profiling/profiling_utils.cc +++ b/mindspore/ccsrc/device/ascend/profiling/profiling_utils.cc @@ -317,13 +317,11 @@ void ProfilingUtils::ReportProfilingData(const std::vector &task_ids, auto context = MsContext::GetInstance(); MS_EXCEPTION_IF_NULL(context); - TaskDescReporter task_reporter(context->device_id(), "vm.task_desc_info_" + std::to_string(graph->graph_id()), - ret->second); + TaskDescReporter task_reporter(context->device_id(), "vm.task_desc_info", ret->second); task_reporter.set_task_ids(task_ids); task_reporter.ReportData(); - GraphDescReporter graph_reporter(context->device_id(), "vm.graph_desc_info_" + std::to_string(graph->graph_id()), - ret->second); + GraphDescReporter graph_reporter(context->device_id(), "vm.graph_desc_info", ret->second); graph_profiling_cnode_.erase(ret); graph_reporter.ReportData(); }