From 69169819ece6d606f1d3e50a2a756df2e0f2bb65 Mon Sep 17 00:00:00 2001 From: fenglovebei <452622886@qq.com> Date: Wed, 9 Jun 2021 21:59:06 +0800 Subject: [PATCH] update check failed desc --- mindspore/run_check/run_check.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mindspore/run_check/run_check.py b/mindspore/run_check/run_check.py index 5c451706a82..d7904ffa844 100644 --- a/mindspore/run_check/run_check.py +++ b/mindspore/run_check/run_check.py @@ -19,8 +19,8 @@ mindspore.run_check The goal is to provide a convenient API to check if the installation is successful or failed. """ -import numpy as np from importlib import import_module +import numpy as np try: @@ -63,5 +63,5 @@ def run_check(): _check_mul() # pylint: disable=broad-except except Exception as e: - print("MindSpore installation failed!") - print("CheckFailed: ", str(e)) + print("MindSpore running check failed.") + print(str(e))