Browse Source

!25916 correct log level

Merge pull request !25916 from john_tzanakakis/jt_bug_fixes
tags/v1.6.0
i-robot Gitee 4 years ago
parent
commit
938da844be
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      mindspore/ccsrc/debug/data_dump/e2e_dump.cc

+ 2
- 2
mindspore/ccsrc/debug/data_dump/e2e_dump.cc View File

@@ -52,8 +52,8 @@ void E2eDump::DumpGPUMemToFile(const std::string &file_path, const std::string &
auto ret = debugger->DumpTensorToFile(original_kernel_name, trans_flag, file_path, format, int_shapes, host_type,
device_type, addr.format(), slot);
if (!ret) {
MS_LOG(ERROR) << "DumpTensorToFile Failed: flag:" << trans_flag << ", path:" << file_path
<< ", host_format:" << format;
MS_LOG(INFO) << "DumpTensorToFile Failed: flag:" << trans_flag << ", path:" << file_path
<< ", host_format:" << format;
}
#endif
}


Loading…
Cancel
Save