============================= test session starts ============================== platform linux -- Python 3.7.5, pytest-5.4.3, py-1.11.0, pluggy-0.13.1 rootdir: /home/jenkins/mindspore/testcases/testcases/tests/st/ge/ops, inifile: /home/jenkins/sault/virtual_test/virtualenv_008/sault/config/pytest.ini plugins: anyio-3.7.1, forked-1.1.3, xdist-1.32.0 collected 1 item test_ge_ops.py super(Net, self).__init__() File "/home/jenkins/.local/lib/python3.7/site-packages/mindspore/nn/cell.py", line 134, in __init__ init_pipeline() RuntimeError: Ascend kernel runtime initialization failed. The details refer to 'Ascend Error Message'. ---------------------------------------------------- - Framework Error Message: ---------------------------------------------------- Malloc device memory failed, free memory size is less than half of total memory size.Device 7 Device HBM total size:34359738368 Device HBM free size:1701478400 may be other processes occupying this card, check as: ps -ef|grep python F =================================== FAILURES =================================== _________________________________ test_unique __________________________________ @pytest.mark.level1 @pytest.mark.platform_arm_ascend_training @pytest.mark.platform_x86_ascend_training @pytest.mark.env_onecard def test_unique(): """ Feature: for Unique op Description: inputs are integers Expectation: the result is correct """ > utils.run_testcase('unique') test_ge_ops.py:94: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ file_name = 'unique', case_name = '' def run_testcase(file_name, case_name=""): caller_working_dir = os.path.dirname(inspect.stack()[1][1]) os.chdir(caller_working_dir) log_file = file_name + "_" + case_name + '.log' if case_name == "": ret = os.system(f'{sys.executable} {file_name}.py &> {log_file}') else: ret = os.system(f"{sys.executable} -c 'import {file_name};{file_name}.{case_name}()' &> {log_file}") os.system(f'grep -E "CRITICAL|ERROR|Error" {log_file} -C 3') os.system(f'rm {log_file} -rf') > assert ret == 0 E AssertionError ../ge_test_utils.py:30: AssertionError =========================== short test summary info ============================ FAILED test_ge_ops.py::test_unique - AssertionError ============================== 1 failed in 7.44s ===============================