From cbed8eb501a78e4a45404014388a75caa870bec9 Mon Sep 17 00:00:00 2001 From: caifubi Date: Wed, 23 Mar 2022 10:12:57 +0800 Subject: [PATCH] Change RunTask warning log to info log when the graph has no tasks --- .../plugin/device/ascend/hal/device/ascend_kernel_runtime.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mindspore/ccsrc/plugin/device/ascend/hal/device/ascend_kernel_runtime.cc b/mindspore/ccsrc/plugin/device/ascend/hal/device/ascend_kernel_runtime.cc index a43493ea9bb..529c5359792 100644 --- a/mindspore/ccsrc/plugin/device/ascend/hal/device/ascend_kernel_runtime.cc +++ b/mindspore/ccsrc/plugin/device/ascend/hal/device/ascend_kernel_runtime.cc @@ -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; }