Change RunTask warning log to info log when the graph has no tasks

This commit is contained in:
caifubi 2022-03-23 10:12:57 +08:00
parent cc3080d088
commit cbed8eb501
1 changed files with 1 additions and 1 deletions

View File

@ -1054,7 +1054,7 @@ bool AscendKernelRuntime::RunTask(const session::KernelGraph &graph) {
auto context_ptr = MsContext::GetInstance();
MS_EXCEPTION_IF_NULL(context_ptr);
if (GraphWithEmptyTaskList(graph)) {
MS_LOG(WARNING) << "RunTask end, no task info found";
MS_LOG(INFO) << "RunTask end, no task info found";
return true;
}