diff --git a/mindspore/ccsrc/device/ascend/ascend_label_assign.cc b/mindspore/ccsrc/device/ascend/ascend_label_assign.cc index db68516500b64e6a8149b8b958bf83ead33ab1de..6e261e643637e4b70b26746da7f6fbcaddb3bcfe 100644 --- a/mindspore/ccsrc/device/ascend/ascend_label_assign.cc +++ b/mindspore/ccsrc/device/ascend/ascend_label_assign.cc @@ -140,7 +140,7 @@ uint32_t AscendLabelAssign::GetLabelNum(NotNull gr std::lock_guard lock(label_num_mutex_); auto iter = label_num_.find(graph.get()); if (iter == label_num_.end()) { - MS_LOG(WARNING) << "Graph " << graph->ToString() << " has not assigned label."; + MS_LOG(INFO) << "Graph " << graph->ToString() << " has not assigned label."; return 1; } return iter->second; diff --git a/mindspore/ccsrc/session/ascend_session.cc b/mindspore/ccsrc/session/ascend_session.cc index 520f6cc712ba5994e25e57910ab3e4a9208238f1..d4562f88a0877d16b56f04b763439235b6286fae 100644 --- a/mindspore/ccsrc/session/ascend_session.cc +++ b/mindspore/ccsrc/session/ascend_session.cc @@ -555,12 +555,11 @@ void AscendSession::SelectKernel(const KernelGraph &kernel_graph) const { MS_LOG(INFO) << "Select ApplyKernel: " << cnode->DebugString(); } if (raise_precision_count > 0) { - MS_LOG(DEBUG) << "There has " << raise_precision_count - << " node/nodes used raise precision to selected the kernel!"; + MS_LOG(INFO) << "There has " << raise_precision_count << " node/nodes used raise precision to selected the kernel!"; } if (reduce_precision_count > 0) { - MS_LOG(DEBUG) << "There has " << reduce_precision_count - << " node/nodes used reduce precision to selected the kernel!"; + MS_LOG(INFO) << "There has " << reduce_precision_count + << " node/nodes used reduce precision to selected the kernel!"; } MS_LOG(INFO) << "Finish!"; }