Browse Source

Change profiling callback log level

tags/v1.2.0-rc1
caifubi 5 years ago
parent
commit
d2f9e4b54c
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      mindspore/ccsrc/runtime/device/ascend/profiling/profiling_manager.cc

+ 2
- 2
mindspore/ccsrc/runtime/device/ascend/profiling/profiling_manager.cc View File

@@ -249,7 +249,7 @@ Status RegProfSetDeviceCallback(MsprofSetDeviceCallback func) {
MS_LOG(INFO) << "GE pass setdevice callback to runtime."; MS_LOG(INFO) << "GE pass setdevice callback to runtime.";
Status rt_ret = rtRegDeviceStateCallback(kRtSetDeviceRegName, static_cast<rtDeviceStateCallback>(func)); Status rt_ret = rtRegDeviceStateCallback(kRtSetDeviceRegName, static_cast<rtDeviceStateCallback>(func));
if (rt_ret != PROF_SUCCESS) { if (rt_ret != PROF_SUCCESS) {
MS_LOG(ERROR) << "Pass MsprofSetDeviceCallback to runtime failed!";
MS_LOG(WARNING) << "Pass MsprofSetDeviceCallback to runtime failed.";
return rt_ret; return rt_ret;
} }
return PROF_SUCCESS; return PROF_SUCCESS;
@@ -268,7 +268,7 @@ Status RegProfReporterCallback(MsprofReporterCallback func) {
// Pass MsprofReporterCallback to runtime // Pass MsprofReporterCallback to runtime
Status rt_ret = rtSetMsprofReporterCallback(func); Status rt_ret = rtSetMsprofReporterCallback(func);
if (rt_ret != PROF_SUCCESS) { if (rt_ret != PROF_SUCCESS) {
MS_LOG(ERROR) << "Pass MsprofReporterCallback to runtime failed, ret: " << rt_ret;
MS_LOG(WARNING) << "Pass MsprofReporterCallback to runtime failed, ret: " << rt_ret;
return rt_ret; return rt_ret;
} }
// Pass MsprofReporterCallback to hccl // Pass MsprofReporterCallback to hccl


Loading…
Cancel
Save