快速安装/升级/卸载Ascend配套软件包

news2024/11/24 12:42:09

一、参考资料

配套MindSpore 昇腾软件安装指引(23.0.RC3)

快速安装CANN

二、安装Ascend配套软件包

1. Ascend配套软件包简介

Ascend配套软件包,包括:固件、驱动和CANN(Compute Architecture for Neural Networks,AI异构计算架构)。Ascend配套软件包提供商用版社区版两种版本,其中 商用版下载需要申请权限,社区版下载不受限制。

软件类型软件介绍
固件固件包含昇腾AI处理器自带的OS 、电源器件和功耗管理器件控制软件,分别用于后续加载到AI处理器的模型计算、芯片启动控制和功耗控制。
驱动部署在昇腾服务器,用于管理查询昇腾AI处理器,同时为上层CANN软件提供芯片控制、资源分配等接口。
CANN部署在昇腾服务器,包含Runtime、算子库、图引擎、媒体数据处理等组件,通过AscendCL(Ascend Computing Language)对外提供Device管理、Context管理、Stream管理、内存管理、模型加载与执行、算子加载与执行、媒体数据处理等API,帮助开发者实现在昇腾CANN平台上进行深度学习推理计算、图像预处理、单算子加速计算。

本文以社区版本为例,介绍Ascend配套软件包下载安装过程。Ascend配套软件包和测试服务器信息如下:

软件/硬件版本/型号
MindSpore1.9.0
CANNCANN 6.0.RC1.alpha005
软件包名称:Ascend-cann-toolkit_6.0.RC1_linux-aarch64.run
固件1.0.17.1.alpha
软件包名称:A800-9000-npu-firmware_6.0.rc1.run
驱动1.0.17.1.alpha
软件包名称:A800-9000-npu-driver_6.0.rc1_linux-aarch64.run
服务器Atlas 800 训练服务器(型号:9000)
开发者套件Atlas 200 DK(型号:3000)

Atlas 200 DK既作为开发环境,又作为运行环境,也就是“开发环境与运行环境合设”。

2. 准备工作

2.1 准备用户

制作SD卡时,已经在Atlas 200 DK上创建了用于运行应用程序的 HwHiAiUser 用户,请直接使用此用户作为CANN软件的安装运行用户。

2.2 下载固件和驱动

通过 链接 查询并下载CANN软件包的下载链接。推荐下载并安装 *.run 格式的软件包。

在这里插入图片描述

2.3 下载CANN软件包

通过 链接 查询并下载CANN软件包的下载链接。推荐下载并安装 *.run 格式的软件包。

在这里插入图片描述

在这里插入图片描述

3. 安装驱动和固件

配套MindSpore 昇腾软件安装指引(23.0.RC3)

安装驱动和固件的详细步骤,请参考:快速安装CANN

4. 安装CANN软件包(ascend-toolkit)

安装CANN软件包的详细步骤,请参考:快速安装CANN

首先,将开发套件包上传到Atlas 200 DK任意目录,切换到 HwHiAiUser 用户,并执行相关指令。

# 给安装包增加可执行权限
chmod +x Ascend-cann-toolkit_{version}_linux-aarch64.run

# 校验安装包的一致性和完整性
./Ascend-cann-toolkit_{version}_linux-aarch64.run --check

# 默认安装路径为 `$HOME/Ascend`
./Ascend-cann-toolkit_8.0.RC1.alpha003_linux-x86_64.run --install

# 安装到指定路径
./Ascend-cann-toolkit_8.0.RC1.alpha003_linux-x86_64.run --install-path=<path> 

CANN软件包相关指令

HwHiAiUser@davinci-mini:~/Downloads# ./Ascend-cann-toolkit_6.0.RC1_linux-aarch64.run --help
Usage: ./Ascend-cann-toolkit_6.0.RC1_linux-aarch64.run [options]
Options:
  --help | -h                       Print this message
  --info                            Print embedded info : title, default target directory, embedded script ...
  --list                            Print the list of files in the archive
  --check                           Checks integrity and version dependency of the archive
  --quiet                           Quiet install mode, skip human-computer interactions
  --nox11                           Do not spawn an xterm
  --noexec                          Do not run embedded script
  --extract=<path>                  Extract directly to a target directory (absolute or relative)
                                    Usually used with --noexec to just extract files without running
  --tar arg1 [arg2 ...]             Access the contents of the archive through the tar command
  --install                         Install run mode
  --uninstall                       Uninstall
  --upgrade                         Upgrade
  --devel                           Install devel mode
  --version                         Show version
  --install-for-all                 Install for all users
  --install-path=<path>             Install to specific path
  --chip=<chip_type>                Appoint chip type, must be Ascend310, Ascend910, Ascend310P or Ascend310-minirc
  --feature-list=<feature>          Upgrade feature separately, must be Acclibs
  --alternative                     Show all supported features
  --whitelist=<feature_type>        Install features, must be atc, devtools, nnrt, nnae
  --full                            Install full mode

校验软件包的一致性和完整性

HwHiAiUser@davinci-mini:~/Downloads$ ./Ascend-cann-toolkit_6.0.RC1_linux-aarch64.run --check
Verifying archive integrity...  100%   SHA256 checksums are OK. ./Ascend-cann-toolkit_6.0.RC1_linux-aarch64.run does not contain an embedded MD5 checksum.
 ./Ascend-cann-toolkit_6.0.RC1_linux-aarch64.run does not contain a CRC checksum.
 All good.
Verifying archive integrity...  100%   SHA256 checksums are OK. All good.
Uncompressing ASCEND_RUN_PACKAGE  100%
[Toolkit] [20240408-05:48:23] [INFO] LogFile:/home/HwHiAiUser/var/log/ascend_seclog/ascend_toolkit_install.log

HwHiAiUser 用户下的默认安装路径:/home/HwHiAiUser/Ascend/ascend-toolkit

HwHiAiUser@davinci-mini:~/Downloads$ ./Ascend-cann-toolkit_6.0.RC1_linux-aarch64.run --install
Verifying archive integrity...  100%   SHA256 checksums are OK. All good.
Uncompressing ASCEND_RUN_PACKAGE  100%
[Toolkit] [20240408-06:29:47] [INFO] LogFile:/home/HwHiAiUser/var/log/ascend_seclog/ascend_toolkit_install.log
[Toolkit] [20240408-06:29:47] [INFO] install start
[Toolkit] [20240408-06:29:47] [INFO] The installation path is /home/HwHiAiUser/Ascend.
[Toolkit] [20240408-06:29:47] [INFO] install package CANN-runtime-1.83.10.1.252-linux.aarch64.run start
[Toolkit] [20240408-06:30:02] [INFO] CANN-runtime-1.83.10.1.252-linux.aarch64.run --full --quiet --nox11 install success
[Toolkit] [20240408-06:30:02] [INFO] install package CANN-compiler-1.83.10.1.252-linux.aarch64.run start

[notice] A new release of pip available: 22.3 -> 24.0
[notice] To update, run: pip install --upgrade pip

[notice] A new release of pip available: 22.3 -> 24.0
[notice] To update, run: pip install --upgrade pip

[notice] A new release of pip available: 22.3 -> 24.0
[notice] To update, run: pip install --upgrade pip

[notice] A new release of pip available: 22.3 -> 24.0
[notice] To update, run: pip install --upgrade pip

[notice] A new release of pip available: 22.3 -> 24.0
[notice] To update, run: pip install --upgrade pip

[notice] A new release of pip available: 22.3 -> 24.0
[notice] To update, run: pip install --upgrade pip
[Toolkit] [20240408-06:32:20] [INFO] CANN-compiler-1.83.10.1.252-linux.aarch64.run --full --pylocal --quiet --nox11 install success
[Toolkit] [20240408-06:32:20] [INFO] install package CANN-opp-1.83.10.1.252-linux.aarch64.run start
[Toolkit] [20240408-06:34:16] [INFO] CANN-opp-1.83.10.1.252-linux.aarch64.run --full --quiet --nox11 install success
[Toolkit] [20240408-06:34:16] [INFO] install package CANN-toolkit-1.83.10.1.252-linux.aarch64.run start
[Toolkit] [20240408-06:36:13] [INFO] CANN-toolkit-1.83.10.1.252-linux.aarch64.run --full --pylocal --quiet --nox11 install success
[Toolkit] [20240408-06:36:13] [INFO] install package CANN-aoe-1.83.10.1.252-linux.aarch64.run start
[Toolkit] [20240408-06:36:22] [INFO] CANN-aoe-1.83.10.1.252-linux.aarch64.run --full --quiet --nox11 install success
[Toolkit] [20240408-06:36:22] [INFO] install package Ascend-mindstudio-toolkit_5.0.RC3_linux-aarch64.run start
[Toolkit] [20240408-06:36:48] [INFO] Ascend-mindstudio-toolkit_5.0.RC3_linux-aarch64.run --full --quiet --nox11 install success
[Toolkit] [20240408-06:36:48] [INFO] install package Ascend-test-ops_6.0.RC1_linux.run start
[Toolkit] [20240408-06:36:48] [INFO] Ascend-test-ops_6.0.RC1_linux.run --full --quiet --nox11 install success
[Toolkit] [20240408-06:36:48] [INFO] install package Ascend-pyACL_6.0.RC1_linux-aarch64.run start
[Toolkit] [20240408-06:36:49] [INFO] Ascend-pyACL_6.0.RC1_linux-aarch64.run --full --quiet --nox11 install success
[Toolkit] [20240408-06:36:49] [INFO] The /home/HwHiAiUser/Ascend/ascend_cann_install.info is written successfully.
[Toolkit] [20240408-06:36:49] [INFO] Please make sure that:
PATH includes :
        /home/HwHiAiUser/Ascend/ascend-toolkit/latest/bin:
        /home/HwHiAiUser/Ascend/ascend-toolkit/latest/compiler/ccec_compiler/bin:
LD_LIBRARY_PATH includes :
        /home/HwHiAiUser/Ascend/ascend-toolkit/latest/lib64:
        /home/HwHiAiUser/Ascend/ascend-toolkit/latest/lib64/plugin/opskernel:
        /home/HwHiAiUser/Ascend/ascend-toolkit/latest/lib64/plugin/nnengine:
PYTHONPATH includes :
        /home/HwHiAiUser/Ascend/ascend-toolkit/latest/python/site-packages:
        /home/HwHiAiUser/Ascend/ascend-toolkit/latest/opp/op_impl/built-in/ai_core/tbe:
ASCEND_AICPU_PATH includes :
        /home/HwHiAiUser/Ascend/ascend-toolkit/latest:
ASCEND_OPP_PATH includes :
        /home/HwHiAiUser/Ascend/ascend-toolkit/latest/opp:
TOOLCHAIN_HOME includes :
        /home/HwHiAiUser/Ascend/ascend-toolkit/latest/toolkit:
ASCEND_HOME_PATH includes :
        /home/HwHiAiUser/Ascend/ascend-toolkit/latest:
[Toolkit] [20240408-06:36:49] [INFO] If your service is started using the shell script, you can call the /home/HwHiAiUser/Ascend/ascend-toolkit/set_env.sh script to configure environment variables. Note that this script can not be executed mannually.
[Toolkit] [20240408-06:36:49] [INFO] Ascend-cann-toolkit_6.0.RC1_linux-aarch64 install success. The installation path is /home/HwHiAiUser/Ascend.

root 用户下的默认安装路径:/usr/local/Ascend/ascend-toolkit

root@davinci-mini:/home/HwHiAiUser/Downloads# ./Ascend-cann-toolkit_6.0.RC1_linux-aarch64.run --install
Verifying archive integrity...  100%   SHA256 checksums are OK. All good.
Uncompressing ASCEND_RUN_PACKAGE  100%
[Toolkit] [20240409-06:29:00] [INFO] LogFile:/var/log/ascend_seclog/ascend_toolkit_install.log
[Toolkit] [20240409-06:29:00] [INFO] install start
[Toolkit] [20240409-06:29:00] [INFO] The installation path is /usr/local/Ascend.
[Toolkit] [20240409-06:29:00] [INFO] install package CANN-runtime-1.83.10.1.252-linux.aarch64.run start
[Toolkit] [20240409-06:29:16] [INFO] CANN-runtime-1.83.10.1.252-linux.aarch64.run --full --quiet --nox11 install success
[Toolkit] [20240409-06:29:16] [INFO] install package CANN-compiler-1.83.10.1.252-linux.aarch64.run start
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: There was an error checking the latest version of pip.
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: There was an error checking the latest version of pip.
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: There was an error checking the latest version of pip.
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: There was an error checking the latest version of pip.
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: There was an error checking the latest version of pip.
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: There was an error checking the latest version of pip.
[Toolkit] [20240409-06:31:30] [INFO] CANN-compiler-1.83.10.1.252-linux.aarch64.run --full --pylocal --quiet --nox11 install success
[Toolkit] [20240409-06:31:30] [INFO] install package CANN-opp-1.83.10.1.252-linux.aarch64.run start
[Toolkit] [20240409-06:33:29] [INFO] CANN-opp-1.83.10.1.252-linux.aarch64.run --full --quiet --nox11 install success
[Toolkit] [20240409-06:33:29] [INFO] install package CANN-toolkit-1.83.10.1.252-linux.aarch64.run start
[Toolkit] [20240409-06:35:28] [INFO] CANN-toolkit-1.83.10.1.252-linux.aarch64.run --full --pylocal --quiet --nox11 install success
[Toolkit] [20240409-06:35:28] [INFO] install package CANN-aoe-1.83.10.1.252-linux.aarch64.run start
[Toolkit] [20240409-06:35:37] [INFO] CANN-aoe-1.83.10.1.252-linux.aarch64.run --full --quiet --nox11 install success
[Toolkit] [20240409-06:35:37] [INFO] install package Ascend-mindstudio-toolkit_5.0.RC3_linux-aarch64.run start
[Toolkit] [20240409-06:36:03] [INFO] Ascend-mindstudio-toolkit_5.0.RC3_linux-aarch64.run --full --quiet --nox11 install success
[Toolkit] [20240409-06:36:03] [INFO] install package Ascend-test-ops_6.0.RC1_linux.run start
[Toolkit] [20240409-06:36:04] [INFO] Ascend-test-ops_6.0.RC1_linux.run --full --quiet --nox11 install success
[Toolkit] [20240409-06:36:04] [INFO] install package Ascend-pyACL_6.0.RC1_linux-aarch64.run start
[Toolkit] [20240409-06:36:04] [INFO] Ascend-pyACL_6.0.RC1_linux-aarch64.run --full --quiet --nox11 install success
[Toolkit] [20240409-06:36:04] [INFO] The /etc/Ascend/ascend_cann_install.info is written successfully.
[Toolkit] [20240409-06:36:04] [INFO] Please make sure that:
PATH includes :
        /usr/local/Ascend/ascend-toolkit/latest/bin:
        /usr/local/Ascend/ascend-toolkit/latest/compiler/ccec_compiler/bin:
LD_LIBRARY_PATH includes :
        /usr/local/Ascend/ascend-toolkit/latest/lib64:
        /usr/local/Ascend/ascend-toolkit/latest/lib64/plugin/opskernel:
        /usr/local/Ascend/ascend-toolkit/latest/lib64/plugin/nnengine:
PYTHONPATH includes :
        /usr/local/Ascend/ascend-toolkit/latest/python/site-packages:
        /usr/local/Ascend/ascend-toolkit/latest/opp/op_impl/built-in/ai_core/tbe:
ASCEND_AICPU_PATH includes :
        /usr/local/Ascend/ascend-toolkit/latest:
ASCEND_OPP_PATH includes :
        /usr/local/Ascend/ascend-toolkit/latest/opp:
TOOLCHAIN_HOME includes :
        /usr/local/Ascend/ascend-toolkit/latest/toolkit:
ASCEND_HOME_PATH includes :
        /usr/local/Ascend/ascend-toolkit/latest:
[Toolkit] [20240409-06:36:04] [INFO] If your service is started using the shell script, you can call the /usr/local/Ascend/ascend-toolkit/set_env.sh script to configure environment variables. Note that this script can not be executed mannually.
[Toolkit] [20240409-06:36:05] [INFO] Ascend-cann-toolkit_6.0.RC1_linux-aarch64 install success. The installation path is /usr/local/Ascend.

安装过程中,npu资源占用情况:

在这里插入图片描述

注意说明:官方文档推荐切换到 HwHiAiUser 用户进行安装,否则容易出现意想不到的问题。

WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: There was an error checking the latest version of pip.
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: There was an error checking the latest version of pip.
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: There was an error checking the latest version of pip.
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: There was an error checking the latest version of pip.
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: There was an error checking the latest version of pip.
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: There was an error checking the latest version of pip.

5. 升级CANN

升级操作

在驱动和固件和CANN软件配套场景下,可单独升级CANN软件包。

# 切换为root用户
su - root

# 指定安装路径
./Ascend-cann-toolkit_{version}_linux-aarch64.run --upgrade --install-path=<path>

# 默认安装目录
./Ascend-cann-toolkit_{version}_linux-aarch64.run --upgrade

如果升级失败,请尝试:

# 切换为root用户
su - root

# 升级CANN
./Ascend-cann-toolkit_{version}_linux-aarch64.run --upgrade
HwHiAiUser@davinci-mini:~$ su - root
Password:
root@davinci-mini:~# /home/HwHiAiUser/Downloads/Ascend-cann-toolkit_6.0.RC1_linux-aarch64.run --install --install-for-all --quiet
[Toolkit] [20240408-08:44:15] [INFO] LogFile:/var/log/ascend_seclog/ascend_toolkit_install.log
[Toolkit] [20240408-08:44:16] [INFO] install start
[Toolkit] [20240408-08:44:16] [INFO] The installation path is /usr/local/Ascend.
[Toolkit] [20240408-08:44:16] [INFO] install package CANN-runtime-1.83.10.1.252-linux.aarch64.run start
[Toolkit] [20240408-08:44:30] [INFO] CANN-runtime-1.83.10.1.252-linux.aarch64.run --full --quiet --nox11 --install-for-all install success
[Toolkit] [20240408-08:44:30] [INFO] install package CANN-compiler-1.83.10.1.252-linux.aarch64.run start
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: There was an error checking the latest version of pip.
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: There was an error checking the latest version of pip.
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: There was an error checking the latest version of pip.
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: There was an error checking the latest version of pip.
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: There was an error checking the latest version of pip.
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
WARNING: There was an error checking the latest version of pip.
[Toolkit] [20240408-08:46:39] [INFO] CANN-compiler-1.83.10.1.252-linux.aarch64.run --full --pylocal --quiet --nox11 --install-for-all install success
[Toolkit] [20240408-08:46:39] [INFO] install package CANN-opp-1.83.10.1.252-linux.aarch64.run start
[Toolkit] [20240408-08:48:29] [INFO] CANN-opp-1.83.10.1.252-linux.aarch64.run --full --quiet --nox11 --install-for-all install success
[Toolkit] [20240408-08:48:29] [INFO] install package CANN-toolkit-1.83.10.1.252-linux.aarch64.run start
[Toolkit] [20240408-08:50:26] [INFO] CANN-toolkit-1.83.10.1.252-linux.aarch64.run --full --pylocal --quiet --nox11 --install-for-all install success
[Toolkit] [20240408-08:50:26] [INFO] install package CANN-aoe-1.83.10.1.252-linux.aarch64.run start
[Toolkit] [20240408-08:50:35] [INFO] CANN-aoe-1.83.10.1.252-linux.aarch64.run --full --quiet --nox11 --install-for-all install success
[Toolkit] [20240408-08:50:35] [INFO] install package Ascend-mindstudio-toolkit_5.0.RC3_linux-aarch64.run start
[Toolkit] [20240408-08:50:59] [INFO] Ascend-mindstudio-toolkit_5.0.RC3_linux-aarch64.run --full --quiet --nox11 --install-for-all install success
[Toolkit] [20240408-08:50:59] [INFO] install package Ascend-test-ops_6.0.RC1_linux.run start
[Toolkit] [20240408-08:51:00] [INFO] Ascend-test-ops_6.0.RC1_linux.run --full --quiet --nox11 --install-for-all install success
[Toolkit] [20240408-08:51:00] [INFO] install package Ascend-pyACL_6.0.RC1_linux-aarch64.run start
[Toolkit] [20240408-08:51:00] [INFO] Ascend-pyACL_6.0.RC1_linux-aarch64.run --full --quiet --nox11 --install-for-all install success
[Toolkit] [20240408-08:51:00] [INFO] Please make sure that:
PATH includes :
        /usr/local/Ascend/ascend-toolkit/latest/bin:
        /usr/local/Ascend/ascend-toolkit/latest/compiler/ccec_compiler/bin:
LD_LIBRARY_PATH includes :
        /usr/local/Ascend/ascend-toolkit/latest/lib64:
        /usr/local/Ascend/ascend-toolkit/latest/lib64/plugin/opskernel:
        /usr/local/Ascend/ascend-toolkit/latest/lib64/plugin/nnengine:
PYTHONPATH includes :
        /usr/local/Ascend/ascend-toolkit/latest/python/site-packages:
        /usr/local/Ascend/ascend-toolkit/latest/opp/op_impl/built-in/ai_core/tbe:
ASCEND_AICPU_PATH includes :
        /usr/local/Ascend/ascend-toolkit/latest:
ASCEND_OPP_PATH includes :
        /usr/local/Ascend/ascend-toolkit/latest/opp:
TOOLCHAIN_HOME includes :
        /usr/local/Ascend/ascend-toolkit/latest/toolkit:
ASCEND_HOME_PATH includes :
        /usr/local/Ascend/ascend-toolkit/latest:
[Toolkit] [20240408-08:51:00] [INFO] If your service is started using the shell script, you can call the /usr/local/Ascend/ascend-toolkit/set_env.sh script to configure environment variables. Note that this script can not be executed mannually.
[Toolkit] [20240408-08:51:00] [INFO] Ascend-cann-toolkit_6.0.RC1_linux-aarch64 install success. The installation path is /usr/local/Ascend.

注意说明:升级CANN是在旧版CANN的基础上进行软件安装,需要较大的存储空间和计算资源,容易出现存储空间不足导致升级失败的问题。博主测试32GB版本的Atlas 200 DK(型号:3000),存储空间勉强能满足升级要求。升级完成后,存储空间仅剩1.5GB。解决办法是卸载旧版本CANN,详细步骤,请参见后文。

在这里插入图片描述

6. 设置环境变量

6.1 临时设置环境变量

./home/HwHiAiUser/Ascend/ascend-toolkit/set_env.sh    

6.2 永久设置环境变量

# 编辑
vi ~/.bashrc
sudo gedit ~/.bashrc

# 添加
. /home/HwHiAiUser/Ascend/ascend-toolkit/set_env.sh   

# 激活环境变量
source ~/.bashrc

7. 卸载软件包相关指令

卸载

7.1 卸载ascend-toolkit软件包

卸载CANN软件包

# 切换root用户
su - root

# 进入卸载脚本所在路径
cd /usr/local/Ascend/ascend-toolkit/{version}/

# 执行卸载
./cann_uninstall.sh

输出结果

HwHiAiUser@davinci-mini:~/Ascend/ascend-toolkit/6.0$ ./cann_uninstall.sh
[Runtime] [2024-04-09 06:06:16] [INFO]: Start time:2024-04-09 06:06:16
[Runtime] [2024-04-09 06:06:16] [INFO]: LogFile:/home/HwHiAiUser/var/log/ascend_seclog/ascend_install.log
[Runtime] [2024-04-09 06:06:16] [INFO]: InputParams:--uninstall
[Runtime] [2024-04-09 06:06:16] [INFO]: uninstall /home/HwHiAiUser/Ascend/ascend-toolkit full
[Runtime] [2024-04-09 06:06:16] [INFO]: step into run_runtime_uninstall.sh ......
[Runtime] [2024-04-09 06:06:16] [INFO]: uninstall target dir /home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1, type full.
[Runtime] [2024-04-09 06:06:23] [INFO]: Runtime package uninstalled successfully! Uninstallation takes effect immediately.
[Runtime] [2024-04-09 06:06:23] [INFO]: End time:2024-04-09 06:06:23
[Compiler] [2024-04-09 06:06:23] [INFO]: Start time:2024-04-09 06:06:23
[Compiler] [2024-04-09 06:06:23] [INFO]: LogFile:/home/HwHiAiUser/var/log/ascend_seclog/ascend_install.log
[Compiler] [2024-04-09 06:06:23] [INFO]: InputParams:--uninstall
[Compiler] [2024-04-09 06:06:23] [INFO]: uninstall /home/HwHiAiUser/Ascend/ascend-toolkit full
[Compiler] [2024-04-09 06:06:23] [INFO]: step into run_compiler_uninstall.sh ......
[Compiler] [2024-04-09 06:06:23] [INFO]: uninstall target dir /home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1, type full.
[Compiler] [2024-04-09 06:06:28] [INFO]: uninstall tbe compiler tool begin...
[Compiler] [2024-04-09 06:06:36] [INFO]: te uninstalled successfully!
[Compiler] [2024-04-09 06:06:39] [INFO]: opc_tool uninstalled successfully!
[Compiler] [2024-04-09 06:06:42] [INFO]: topi uninstalled successfully!
[Compiler] [2024-04-09 06:06:46] [INFO]: hccl uninstalled successfully!
[Compiler] [2024-04-09 06:06:49] [INFO]: auto_tune uninstalled successfully!
[Compiler] [2024-04-09 06:06:55] [INFO]: schedule_search uninstalled successfully!
[Compiler] [2024-04-09 06:06:55] [INFO]: tbe compiler tool uninstalled successfully!
[Compiler] [2024-04-09 06:06:55] [INFO]: /home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1/python/site-packages/schedule_search.egg uninstalled successfully!
[Compiler] [2024-04-09 06:06:55] [INFO]: /home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1/python/site-packages/auto_tune.egg uninstalled successfully!
[Compiler] [2024-04-09 06:06:55] [INFO]: /home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1/python/site-packages dir is not empty.
[Compiler] [2024-04-09 06:06:55] [INFO]: /home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1/python dir is not empty.
[Compiler] [2024-04-09 06:07:01] [INFO]: Compiler package uninstalled successfully! Uninstallation takes effect immediately.
[Compiler] [2024-04-09 06:07:01] [INFO]: End time:2024-04-09 06:07:01
[Opp] [2024-04-09 06:07:01] [INFO]: Start Time: 2024-04-09 06:07:01
[Opp] [2024-04-09 06:07:01] [INFO]: Uninstall the version before multi version of opp successfully!
[Opp] [2024-04-09 06:07:01] [INFO]: Execute the opp run package.
[Opp] [2024-04-09 06:07:01] [INFO]: OperationLogFile path: /home/HwHiAiUser/var/log/ascend_seclog/ascend_install.log.
[Opp] [2024-04-09 06:07:02] [INFO]: Input params: --uninstall --install-path=/home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1
[Opp] [2024-04-09 06:07:02] [INFO]: Begin uninstall the opp module.
[Opp] [2024-04-09 06:07:02] [INFO]: Delete the ops soft link (/home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1/ops).
[Opp] [2024-04-09 06:07:02] [INFO]: Unset the environment path [ export ASCEND_OPP_PATH=/home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1/opp ].
[Opp] [2024-04-09 06:07:02] [INFO]: Delete the installed opp source files in (/home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1).
[Opp] [2024-04-09 06:07:13] [INFO]: Delete the version info file (/home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1/opp/version.info).
[Opp] [2024-04-09 06:07:13] [INFO]: Delete the install info file (/home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1/opp/ascend_install.info).
[Opp] [2024-04-09 06:07:14] [WARNING]: /home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1/opp/test-ops, has files changed by users, cannot be delete.
[Opp] [2024-04-09 06:07:14] [INFO]: Opp package uninstalled successfully! Uninstallation takes effect immediately.
[Opp] [2024-04-09 06:07:14] [INFO]: Remove precheck info.
Install MAJOR HwHiAiUser 2024-04-09 06:07:14 127.0.0.1 OPP success install_type=full; cmdlist=--uninstall --install-path=/home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1.
[Opp] [2024-04-09 06:07:14] [INFO]: End Time: 2024-04-09 06:07:14
[Toolkit] [2024-04-09 06:07:14] [INFO]: LogFile: /home/HwHiAiUser/var/log/ascend_seclog/ascend_install.log
[Toolkit] [2024-04-09 06:07:14] [INFO]: OperationLogFile: /home/HwHiAiUser/var/log/ascend_seclog/operation.log
[Toolkit] [2024-04-09 06:07:14] [INFO]: InputParams:
[Toolkit] [2024-04-09 06:07:14] [INFO]: base version is 1.83.10.1.252.
[Toolkit] [2024-04-09 06:07:14] [INFO] [Profiler]: Uninstall profiling successfully.
[Toolkit] [2024-04-09 06:08:18] [INFO]: Toolkit package uninstalled successfully! Uninstallation takes effect immediately.
[Aoe] [2024-04-09 06:08:19] [INFO]: Start time:2024-04-09 06:08:19
[Aoe] [2024-04-09 06:08:19] [INFO]: LogFile:/home/HwHiAiUser/var/log/ascend_seclog/ascend_install.log
[Aoe] [2024-04-09 06:08:19] [INFO]: InputParams:--uninstall
[Aoe] [2024-04-09 06:08:19] [INFO]: uninstall /home/HwHiAiUser/Ascend/ascend-toolkit full
[Aoe] [2024-04-09 06:08:19] [INFO]: step into run_aoe_uninstall.sh ......
[Aoe] [2024-04-09 06:08:19] [INFO]: uninstall targetdir /home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1, type full.
[Aoe] [2024-04-09 06:08:21] [INFO]: Start create installed packages softlink.
[Aoe] [2024-04-09 06:08:22] [INFO]: Aoe package uninstalled successfully! Uninstallation takes effect immediately.
[Aoe] [2024-04-09 06:08:22] [INFO]: End time:2024-04-09 06:08:22
[Mindstudio-toolkit] [2024-04-09 06:08:22] [INFO]: Start Time: 2024-04-09 06:08:22
[Mindstudio-toolkit] [2024-04-09 06:08:22] [INFO]: LogFile: /home/HwHiAiUser/var/log/ascend_seclog/ascend_install.log
[Mindstudio-toolkit] [2024-04-09 06:08:22] [INFO]: InputParams:
[Mindstudio-toolkit] [2024-04-09 06:08:54] [INFO]: Mindstudio toolkit uninstall success!
[Mindstudio-toolkit] [2024-04-09 06:08:54] [INFO]: End Time: 2024-04-09 06:08:54
[test-ops] [2024-04-09 06:08:55] [INFO]: uninstall successfully
[pyACL] [2024-04-09 06:08:55] [INFO]: delete file /home/HwHiAiUser/Ascend/ascend-toolkit/6.0/pyACL/ascend-pyACL_install.info successfully
[pyACL] [2024-04-09 06:08:55] [INFO]: delete file /home/HwHiAiUser/Ascend/ascend-toolkit/6.0/pyACL/version.info successfully
[pyACL] [2024-04-09 06:08:55] [INFO]: delete file /home/HwHiAiUser/Ascend/ascend-toolkit/6.0/pyACL/scene.info successfully
[pyACL] [2024-04-09 06:08:55] [INFO]: delete file /home/HwHiAiUser/Ascend/ascend-toolkit/6.0/pyACL/python successfully
[pyACL] [2024-04-09 06:08:55] [INFO]: delete file /home/HwHiAiUser/Ascend/ascend-toolkit/6.0/python/site-packages/acl/acl.so successfully
[pyACL] [2024-04-09 06:08:55] [INFO]: delete file /home/HwHiAiUser/Ascend/ascend-toolkit/6.0/python/site-packages/acl.so successfully
[pyACL] [2024-04-09 06:08:55] [INFO]: delete directory /home/HwHiAiUser/Ascend/ascend-toolkit/6.0/python/site-packages/acl/ successfully
[pyACL] [2024-04-09 06:08:55] [INFO]: delete directory /home/HwHiAiUser/Ascend/ascend-toolkit/6.0/python/site-packages successfully
[pyACL] [2024-04-09 06:08:55] [INFO]: delete directory /home/HwHiAiUser/Ascend/ascend-toolkit/6.0/python successfully
[pyACL] [2024-04-09 06:08:55] [INFO]: delete file /home/HwHiAiUser/Ascend/ascend-toolkit/6.0/pyACL/script/uninstall.sh successfully
[pyACL] [2024-04-09 06:08:55] [INFO]: delete directory /home/HwHiAiUser/Ascend/ascend-toolkit/6.0/pyACL/script/ successfully
[pyACL] [2024-04-09 06:08:55] [INFO]: delete directory /home/HwHiAiUser/Ascend/ascend-toolkit/6.0/pyACL successfully
[pyACL] [2024-04-09 06:08:55] [INFO]: delete file /home/HwHiAiUser/Ascend/ascend-toolkit/latest/pyACL successfully
[pyACL] [2024-04-09 06:08:55] [INFO]: delete file /home/HwHiAiUser/Ascend/ascend-toolkit/latest/python/site-packages/acl.so successfully
[pyACL] [2024-04-09 06:08:55] [INFO]: delete file /home/HwHiAiUser/Ascend/ascend-toolkit/latest/python/site-packages/acl/acl.so successfully
[pyACL] [2024-04-09 06:08:55] [INFO]: delete directory /home/HwHiAiUser/Ascend/ascend-toolkit/latest/python/site-packages/acl successfully
[pyACL] [2024-04-09 06:08:55] [INFO]: delete directory /home/HwHiAiUser/Ascend/ascend-toolkit/latest/python/site-packages successfully
[pyACL] [2024-04-09 06:08:55] [INFO]: delete directory /home/HwHiAiUser/Ascend/ascend-toolkit/latest/python successfully
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete file /home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1/aarch64-linux/ascend_toolkit_install.info successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete file /home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1/aarch64-linux/install.conf successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete file /home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1/aarch64-linux/script/uninstall.sh successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete file /home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1/aarch64-linux/script/set_env.sh successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete directory /home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1/aarch64-linux/script successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete file /home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1/aarch64-linux/runtime successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete directory /home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1/aarch64-linux successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete file /home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1/cann_uninstall.sh successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete directory /home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1/combo_script successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]: The configuration file is deleted successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]: rm soft link /home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1/arm64-linux
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete file /home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1/arm64-linux successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete directory /home/HwHiAiUser/Ascend/ascend-toolkit/6.0.RC1 successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]: rm soft link /home/HwHiAiUser/Ascend/ascend-toolkit/latest/aarch64-linux/ascend_toolkit_install.info
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete file /home/HwHiAiUser/Ascend/ascend-toolkit/latest/aarch64-linux/ascend_toolkit_install.info successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]: rm soft link /home/HwHiAiUser/Ascend/ascend-toolkit/latest/aarch64-linux/install.conf
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete file /home/HwHiAiUser/Ascend/ascend-toolkit/latest/aarch64-linux/install.conf successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]: rm soft link /home/HwHiAiUser/Ascend/ascend-toolkit/latest/aarch64-linux/runtime
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete file /home/HwHiAiUser/Ascend/ascend-toolkit/latest/aarch64-linux/runtime successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]: rm soft link /home/HwHiAiUser/Ascend/ascend-toolkit/latest/aarch64-linux/script
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete file /home/HwHiAiUser/Ascend/ascend-toolkit/latest/aarch64-linux/script successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete directory /home/HwHiAiUser/Ascend/ascend-toolkit/latest/aarch64-linux successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]: rm soft link /home/HwHiAiUser/Ascend/ascend-toolkit/latest/arm64-linux
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete file /home/HwHiAiUser/Ascend/ascend-toolkit/latest/arm64-linux successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete directory /home/HwHiAiUser/Ascend/ascend-toolkit/latest successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]: rm soft link /home/HwHiAiUser/Ascend/ascend-toolkit/6.0
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete file /home/HwHiAiUser/Ascend/ascend-toolkit/6.0 successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete operation, the directory /home/HwHiAiUser/Ascend/ascend-toolkit is not empty.
[Toolkit] [2024-04-09 06:08:55] [WARNING]:  delete operation, the /home/HwHiAiUser/Ascend/ascend-toolkit/latest is not exist or not directory.
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete file /home/HwHiAiUser/Ascend/ascend-toolkit/set_env.sh successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete directory /home/HwHiAiUser/Ascend/ascend-toolkit successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]:  delete file /home/HwHiAiUser/Ascend/ascend_cann_install.info successfully.
[Toolkit] [2024-04-09 06:08:55] [INFO]: /home/HwHiAiUser/Ascend/ascend_cann_install.info uninstall success

如果卸载失败,请尝试:

# 切换root用户
su - root

cd /usr/local/Ascend/ascend-toolkit/{version}/{arch}-linux/script

# 执行卸载
./uninstall.sh

输出结果

root@davinci-mini:~# /usr/local/Ascend/ascend-toolkit/5.1.RC2.alpha007/aarch64-linux/script/uninstall.sh
[Toolkit] [20240408-09:32:24] [INFO] LogFile:/var/log/ascend_seclog/ascend_toolkit_install.log
/usr/local/Ascend/ascend-toolkit/5.1.RC2.alpha007/cann_uninstall.sh: 11: cd: can't cd to /usr/local/Ascend/ascend-tool kit/5.1.RC2.alpha007/mindstudio-msprof/script
/usr/local/Ascend/ascend-toolkit/5.1.RC2.alpha007/cann_uninstall.sh: 12: /usr/local/Ascend/ascend-toolkit/5.1.RC2.alph a007/cann_uninstall.sh: ./uninstall.sh: not found
/usr/local/Ascend/ascend-toolkit/5.1.RC2.alpha007/cann_uninstall.sh: 11: cd: can't cd to /usr/local/Ascend/ascend-tool kit/5.1.RC2.alpha007/opp/test-ops/script
/usr/local/Ascend/ascend-toolkit/5.1.RC2.alpha007/cann_uninstall.sh: 12: /usr/local/Ascend/ascend-toolkit/5.1.RC2.alph a007/cann_uninstall.sh: ./uninstall.sh: not found
/usr/local/Ascend/ascend-toolkit/5.1.RC2.alpha007/cann_uninstall.sh: 11: cd: can't cd to /usr/local/Ascend/ascend-tool kit/5.1.RC2.alpha007/pyACL/script
/usr/local/Ascend/ascend-toolkit/5.1.RC2.alpha007/cann_uninstall.sh: 12: /usr/local/Ascend/ascend-toolkit/5.1.RC2.alph a007/cann_uninstall.sh: ./uninstall.sh: not found
/usr/local/Ascend/ascend-toolkit/5.1.RC2.alpha007/cann_uninstall.sh: 11: cd: can't cd to /usr/local/Ascend/ascend-tool kit/5.1.RC2.alpha007/combo_script
/usr/local/Ascend/ascend-toolkit/5.1.RC2.alpha007/cann_uninstall.sh: 12: /usr/local/Ascend/ascend-toolkit/5.1.RC2.alph a007/cann_uninstall.sh: ./uninstall.sh: not found
[Toolkit] [20240408-09:34:38] [ERROR] toolkit uninstall failed, Please refer to the log for more details: /var/log/asc end_seclog/ascend_toolkit_install.log

7.2 卸载nnae软件包

# 切换root用户
su - root

# 进入卸载脚本所在路径
cd /usr/local/Ascend/nnae/{version}/script/

# 执行卸载
./uninstall.sh

7.3 卸载nnrt软件包

卸载nnrt软件包

# 切换root用户
su - root

# 进入卸载脚本所在路径
cd /usr/local/Ascend/nnrt/{version}/{arch}-linux/script

# 执行卸载
./uninstall.sh

7.4 卸载驱动

注意事项:驱动和固件务必在其他软件包卸载之后才能卸载

# 切换root用户
su - root

# 进入卸载脚本所在路径
cd /usr/local/Ascend/driver/script/

# 执行卸载
./uninstall.sh

7.5 卸载固件

注意:Atlas 200 DK 开发者套件的驱动和固件为同一个软件包。

# 切换root用户
su - root

# 进入卸载脚本所在路径
cd /usr/local/Ascend/firmware/script/

# 执行卸载
./uninstall.sh

三、FAQ

Q:cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/latest': No space left on device

root@davinci-mini:~/Downloads# ./Ascend-cann-toolkit_6.0.RC1_linux-aarch64.run --upgrade
Verifying archive integrity...  100%   SHA256 checksums are OK. All good.
Uncompressing ASCEND_RUN_PACKAGE  100%
[Toolkit] [20240408-05:26:48] [INFO] LogFile:/var/log/ascend_seclog/ascend_toolkit_install.log
[Toolkit] [20240408-05:26:48] [INFO] upgrade start
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_1024_repository_Ascend310P3_conv2d_forward.json': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/repository_Ascend310P3_conv2d_bp_input.json': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/repository_Ascend310P1_conv2d_bp_input.json': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/repository_Ascend310P3_depthwise_conv2d.json': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/repository_Ascend310P3_depthwise_bp_filter.json': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/repository_Ascend310P3_depthwise_bp_input.json': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/repository_Ascend310P1_depthwise_bp_filter.json': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/repository_Ascend310P3_conv3d_forward.json': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/repository_Ascend310P3_conv3d_bp_filter.json': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/repository_Ascend310P1_conv3d_forward.json': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/repository_Ascend310P3_matmul.json': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/repository_Ascend310P1_matmul.json': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_0_repository_Ascend310P3_conv2d_forward.bin': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_0_repository_Ascend310P3_conv2d_bp_input.bin': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_32_repository_Ascend310P3_conv2d_forward.bin': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_32_repository_Ascend310P3_conv2d_bp_input.bin': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_512_repository_Ascend310P3_conv2d_forward.bin': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_512_repository_Ascend310P3_conv2d_bp_input.bin': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_1024_repository_Ascend310P3_conv2d_forward.bin': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_0_repository_Ascend310P3_conv2d_forward.bin': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_0_repository_Ascend310P3_conv2d_bp_input.bin': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_32_repository_Ascend310P3_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_32_repository_Ascend310P3_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_512_repository_Ascend310P3_conv2d_forward.bin': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_1024_repository_Ascend310P3_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_512_repository_Ascend310P3_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_0_repository_Ascend310P3_conv2d_forward.bin': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_0_repository_Ascend310P3_conv2d_bp_input.bin': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_32_repository_Ascend310P3_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_32_repository_Ascend310P3_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_512_repository_Ascend310P3_conv2d_forward.bin': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_512_repository_Ascend310P3_conv2d_bp_input.bin': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_1024_repository_Ascend310P3_conv2d_forward.bin': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_0_repository_Ascend310P3_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_32_repository_Ascend310P3_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_512_repository_Ascend310P3_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_0_repository_Ascend310P3_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_32_repository_Ascend310P3_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_512_repository_Ascend310P3_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_0_repository_Ascend310P3_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_32_repository_Ascend310P3_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_512_repository_Ascend310P3_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_0_repository_Ascend310P3_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_32_repository_Ascend310P3_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_512_repository_Ascend310P3_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_1024_repository_Ascend310P3_conv3d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_1024_repository_Ascend310P3_conv3d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_1024_repository_Ascend310P3_conv3d_bp_filter.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_1024_repository_Ascend310P3_conv3d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_1024_repository_Ascend310P3_conv3d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_1024_repository_Ascend310P3_conv3d_bp_filter.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_1024_repository_Ascend310P3_conv3d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_1024_repository_Ascend310P3_conv3d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_1024_repository_Ascend310P3_conv3d_bp_filter.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_0_repository_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_0_repository_Ascend310P1_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_32_repository_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_32_repository_Ascend310P1_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_512_repository_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_512_repository_Ascend310P1_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_1024_repository_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_0_repository_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_0_repository_Ascend310P1_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_32_repository_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_32_repository_Ascend310P1_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_512_repository_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_512_repository_Ascend310P1_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_1024_repository_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_0_repository_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_0_repository_Ascend310P1_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_32_repository_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_32_repository_Ascend310P1_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_512_repository_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_512_repository_Ascend310P1_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_1024_repository_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_0_repository_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_0_repository_Ascend310P1_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_32_repository_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_32_repository_Ascend310P1_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_512_repository_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_512_repository_Ascend310P1_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_1024_repository_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_0_repository_Ascend310P1_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_32_repository_Ascend310P1_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_512_repository_Ascend310P1_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_0_repository_Ascend310P1_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_32_repository_Ascend310P1_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_512_repository_Ascend310P1_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_0_repository_Ascend310P1_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_32_repository_Ascend310P1_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_512_repository_Ascend310P1_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_0_repository_Ascend310P1_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_32_repository_Ascend310P1_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_512_repository_Ascend310P1_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_1024_repository_Ascend310P1_conv3d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_1024_repository_Ascend310P1_conv3d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_1024_repository_Ascend310P1_conv3d_bp_filter.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_1024_repository_Ascend310P1_conv3d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_1024_repository_Ascend310P1_conv3d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_1024_repository_Ascend310P1_conv3d_bp_filter.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_1024_repository_Ascend310P1_conv3d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_1024_repository_Ascend310P1_conv3d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_1024_repository_Ascend310P1_conv3d_bp_filter.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_1024_repository_Ascend310P1_conv3d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_1024_repository_Ascend310P1_conv3d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_1024_repository_Ascend310P1_conv3d_bp_filter.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_0_repository_Ascend310P3_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_0_repository_Ascend310P3_conv2d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_32_repository_Ascend310P3_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_32_repository_Ascend310P3_conv2d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_512_repository_Ascend310P3_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_512_repository_Ascend310P3_conv2d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_1024_repository_Ascend310P3_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_0_repository_Ascend310P3_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_0_repository_Ascend310P3_conv2d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_32_repository_Ascend310P3_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_32_repository_Ascend310P3_conv2d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_512_repository_Ascend310P3_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_512_repository_Ascend310P3_conv2d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_1024_repository_Ascend310P3_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_0_repository_Ascend310P3_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_0_repository_Ascend310P3_conv2d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_32_repository_Ascend310P3_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_32_repository_Ascend310P3_conv2d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_512_repository_Ascend310P3_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_512_repository_Ascend310P3_conv2d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_1024_repository_Ascend310P3_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_0_repository_Ascend310P3_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_32_repository_Ascend310P3_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_512_repository_Ascend310P3_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_0_repository_Ascend310P3_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_32_repository_Ascend310P3_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_512_repository_Ascend310P3_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_0_repository_Ascend310P3_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_32_repository_Ascend310P3_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_512_repository_Ascend310P3_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_0_repository_Ascend310P3_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_32_repository_Ascend310P3_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_512_repository_Ascend310P3_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_1024_repository_Ascend310P3_conv3d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_1024_repository_Ascend310P3_conv3d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_1024_repository_Ascend310P3_conv3d_bp_filter.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_1024_repository_Ascend310P3_conv3d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_1024_repository_Ascend310P3_conv3d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_1024_repository_Ascend310P3_conv3d_bp_filter.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_1024_repository_Ascend310P3_conv3d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_1024_repository_Ascend310P3_conv3d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_1024_repository_Ascend310P3_conv3d_bp_filter.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_0_repository_Ascend310P1_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_0_repository_Ascend310P1_conv2d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_32_repository_Ascend310P1_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_32_repository_Ascend310P1_conv2d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_512_repository_Ascend310P1_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_512_repository_Ascend310P1_conv2d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_1024_repository_Ascend310P1_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_0_repository_Ascend310P1_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_0_repository_Ascend310P1_conv2d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_32_repository_Ascend310P1_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_32_repository_Ascend310P1_conv2d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_512_repository_Ascend310P1_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_512_repository_Ascend310P1_conv2d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_1024_repository_Ascend310P1_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_0_repository_Ascend310P1_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_0_repository_Ascend310P1_conv2d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_32_repository_Ascend310P1_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_32_repository_Ascend310P1_conv2d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_512_repository_Ascend310P1_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_512_repository_Ascend310P1_conv2d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_1024_repository_Ascend310P1_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_0_repository_Ascend310P1_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_0_repository_Ascend310P1_conv2d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_32_repository_Ascend310P1_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_32_repository_Ascend310P1_conv2d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_512_repository_Ascend310P1_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_1024_repository_Ascend310P1_conv2d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_512_repository_Ascend310P1_conv2d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_0_repository_Ascend310P1_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_32_repository_Ascend310P1_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_512_repository_Ascend310P1_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_0_repository_Ascend310P1_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_32_repository_Ascend310P1_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_512_repository_Ascend310P1_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_0_repository_Ascend310P1_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_32_repository_Ascend310P1_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_512_repository_Ascend310P1_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_0_repository_Ascend310P1_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_32_repository_Ascend310P1_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_512_repository_Ascend310P1_matmul.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_1024_repository_Ascend310P1_conv3d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_1024_repository_Ascend310P1_conv3d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_SIZE_1024_repository_Ascend310P1_conv3d_bp_filter.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_1024_repository_Ascend310P1_conv3d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_1024_repository_Ascend310P1_conv3d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_SIZE_1024_repository_Ascend310P1_conv3d_bp_filter.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_1024_repository_Ascend310P1_conv3d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_1024_repository_Ascend310P1_conv3d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_SIZE_1024_repository_Ascend310P1_conv3d_bp_filter.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_1024_repository_Ascend310P1_conv3d_forward.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_1024_repository_Ascend310P1_conv3d_bp_input.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_SIZE_1024_repository_Ascend310P1_conv3d_bp_filter.json': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_FUSION_cost_model_Ascend310P3_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_FUSION_cost_model_Ascend310P3_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_NO_L1_FUSION_cost_model_Ascend310P3_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_NO_L1_FUSION_cost_model_Ascend310P3_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_FUSION_cost_model_Ascend310P3_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_FUSION_cost_model_Ascend310P3_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_NO_L1_FUSION_cost_model_Ascend310P3_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_NO_L1_FUSION_cost_model_Ascend310P3_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_FUSION_cost_model_Ascend310P3_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_FUSION_cost_model_Ascend310P3_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_NO_L1_FUSION_cost_model_Ascend310P3_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_NO_L1_FUSION_cost_model_Ascend310P3_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_FUSION_cost_model_Ascend310P3_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_NO_L1_FUSION_cost_model_Ascend310P3_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_FUSION_cost_model_Ascend310P3_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_NO_L1_FUSION_cost_model_Ascend310P3_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_FUSION_cost_model_Ascend310P3_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_NO_L1_FUSION_cost_model_Ascend310P3_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_FUSION_cost_model_Ascend310P3_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_NO_L1_FUSION_cost_model_Ascend310P3_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_NO_L1_FUSION_cost_model_Ascend310P3_conv3d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_NO_L1_FUSION_cost_model_Ascend310P3_conv3d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_NO_L1_FUSION_cost_model_Ascend310P3_conv3d_bp_filter.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_NO_L1_FUSION_cost_model_Ascend310P3_conv3d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_NO_L1_FUSION_cost_model_Ascend310P3_conv3d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_NO_L1_FUSION_cost_model_Ascend310P3_conv3d_bp_filter.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_NO_L1_FUSION_cost_model_Ascend310P3_conv3d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_NO_L1_FUSION_cost_model_Ascend310P3_conv3d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_NO_L1_FUSION_cost_model_Ascend310P3_conv3d_bp_filter.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_FUSION_cost_model_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_FUSION_cost_model_Ascend310P1_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_NO_L1_FUSION_cost_model_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_NO_L1_FUSION_cost_model_Ascend310P1_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_FUSION_cost_model_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_FUSION_cost_model_Ascend310P1_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_NO_L1_FUSION_cost_model_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_NO_L1_FUSION_cost_model_Ascend310P1_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_FUSION_cost_model_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_FUSION_cost_model_Ascend310P1_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_NO_L1_FUSION_cost_model_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_NO_L1_FUSION_cost_model_Ascend310P1_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_FUSION_cost_model_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_FUSION_cost_model_Ascend310P1_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_NO_L1_FUSION_cost_model_Ascend310P1_conv2d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_NO_L1_FUSION_cost_model_Ascend310P1_conv2d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_L1_FUSION_cost_model_Ascend310P1_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_NO_L1_FUSION_cost_model_Ascend310P1_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_L1_FUSION_cost_model_Ascend310P1_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_NO_L1_FUSION_cost_model_Ascend310P1_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_L1_FUSION_cost_model_Ascend310P1_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_NO_L1_FUSION_cost_model_Ascend310P1_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_L1_FUSION_cost_model_Ascend310P1_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_NO_L1_FUSION_cost_model_Ascend310P1_matmul.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_NO_L1_FUSION_cost_model_Ascend310P1_conv3d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_NO_L1_FUSION_cost_model_Ascend310P1_conv3d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_1_NO_L1_FUSION_cost_model_Ascend310P1_conv3d_bp_filter.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_NO_L1_FUSION_cost_model_Ascend310P1_conv3d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_NO_L1_FUSION_cost_model_Ascend310P1_conv3d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_2_NO_L1_FUSION_cost_model_Ascend310P1_conv3d_bp_filter.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_NO_L1_FUSION_cost_model_Ascend310P1_conv3d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_NO_L1_FUSION_cost_model_Ascend310P1_conv3d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_4_NO_L1_FUSION_cost_model_Ascend310P1_conv3d_bp_filter.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_NO_L1_FUSION_cost_model_Ascend310P1_conv3d_forward.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_NO_L1_FUSION_cost_model_Ascend310P1_conv3d_bp_input.bin': No space left on device
cp: cannot create regular file '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/built-in/AIC_8_NO_L1_FUSION_cost_model_Ascend310P1_conv3d_bp_filter.bin': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310P/custom': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/ascend615': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/ascend610': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/ascend310': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Ascend310B': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Hi3796CV300ES': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/Hi3796CV300CS': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/tiling/SD3403': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/data/rl': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/framework': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/fusion_pass': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/fusion_rules': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/op_impl': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/op_proto': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/scene.info': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/version.info': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/Ascend310RC': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/Ascend310': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/Ascend310P': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/Ascend910': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/opp/test-ops': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/mindstudio-msprof': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/pyACL': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/5.1.RC2.alpha007/combo_script': No space left on device
cp: error writing '/usr/local/Ascend/ascend-toolkit_recover/set_env.sh': No space left on device
cp: cannot create directory '/usr/local/Ascend/ascend-toolkit_recover/latest': No space left on device
[Toolkit] [20240408-05:30:13] [INFO] upgrade package CANN-runtime-1.83.10.1.252-linux.aarch64.run start
mkdir: cannot create directory ‘/root/selfgz1555215972’: No space left on device
Cannot create target directory /root/selfgz1555215972
You should try option --extract=<path>
[Toolkit] [20240408-05:30:16] [ERROR] package_name=CANN-runtime-1.83.10.1.252-linux.aarch64.run upgrade failed
[Toolkit] [20240408-05:30:16] [ERROR] package upgrade failed, Please refer to the log for more details: /var/log/ascend_seclog/ascend_toolkit_install.log
# 错误原因
root用户默认的安装路径是 /usr/local/Ascend,由于根目录的存储空间不足导致升级失败

# 解决办法
清理根目录下的垃圾文件,重新升级
如果还是升级失败,则切换HwHiAiUser用户,重新安装到 /home/HwHiAiUser/Ascend 目录下

Q:path /home/HwHiAiUser/Ascend not exist, please set installation path !

HwHiAiUser@davinci-mini:~/Downloads$ ./Ascend-cann-toolkit_6.0.RC1_linux-aarch64.run --upgrade --extract=./cache
Creating directory ./cache
Verifying archive integrity...  100%   SHA256 checksums are OK. All good.
Uncompressing ASCEND_RUN_PACKAGE  100%
[Toolkit] [20240408-05:52:50] [INFO] LogFile:/home/HwHiAiUser/var/log/ascend_seclog/ascend_toolkit_install.log
[Toolkit] [20240408-05:52:50] [ERROR] path /home/HwHiAiUser/Ascend not exist, please set installation path !
# 错误原因
root用户无法安装到HwHiAiUser用户的所在目录

# 解决办法
切换到root,安装到/usr/local/Ascend目录下
或者
切换到HwHiAiUser目录,安装到/home/HwHiAiUser/Ascend目录下

Q:run package is not installed on path /usr/local/Ascend !

root@davinci-mini:~# /home/HwHiAiUser/Downloads/Ascend-cann-toolkit_6.0.RC1_linux-aarch64.run --upgrade --install-path=/usr/local/Ascend/ --extract=/home/HwHiAiUser/Downloads/cache/
Creating directory /home/HwHiAiUser/Downloads/cache/
Verifying archive integrity...  100%   SHA256 checksums are OK. All good.
Uncompressing ASCEND_RUN_PACKAGE  100%
[Toolkit] [20240408-06:25:04] [INFO] LogFile:/var/log/ascend_seclog/ascend_toolkit_install.log
[Toolkit] [20240408-06:25:04] [ERROR] run package is not installed on path /usr/local/Ascend !

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1580829.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

uniapp 表单使用Uview校验 包括城市选择器

<view><!-- 注意&#xff0c;如果需要兼容微信小程序&#xff0c;最好通过setRules方法设置rules规则 --><u--form labelPosition"left" :model"model1" :rules"rules" ref"uForm" labelWidth"174"><u…

【鸿蒙开发】系统组件Row

Row组件 Row沿水平方向布局容器 接口&#xff1a; Row(value?:{space?: number | string }) 参数&#xff1a; 参数名 参数类型 必填 参数描述 space string | number 否 横向布局元素间距。 从API version 9开始&#xff0c;space为负数或者justifyContent设置为…

electron打包Vue前端

Electron-Forge 打包Vue项目 效果&#xff1a;electronforge可将前端静态页面打包成.exe、.deb和.rpm等&#xff0c;能适配各种平台 示例&#xff1a;Windows环境下将前端 Vue 项目打包成exe文件 打包后的 exe 文件 运行 exe 文件 一、项目准备 开源项目 RouYi 下载 本…

百度获评CCIA数据安全和个人信息保护社会责任评价“三星”示范单位

日前&#xff0c;由中国网络安全产业联盟&#xff08;CCIA&#xff09;数据安全工作委员会主办的“促进数据安全合规流通使用”专题研讨会&#xff08;CCIA数安委年度会议&#xff09;成功举办。与会介绍了数据安全和个人信息保护社会责任试点评价工作的开展情况&#xff0c;并…

极狐GitLab 如何在 helm 中恢复数据

本文作者&#xff1a;徐晓伟 GitLab 是一个全球知名的一体化 DevOps 平台&#xff0c;很多人都通过私有化部署 GitLab 来进行源代码托管。极狐GitLab 是 GitLab 在中国的发行版&#xff0c;专门为中国程序员服务。可以一键式部署极狐GitLab。 本文主要讲述了如何在极狐GitLab …

Ubuntu20.04安装和编译运行lidar_align来联合标定lidar与imu的外参

硬件&#xff1a;树霉派4b 1、下载并安装lidar_align mkdir -p lidar_align/src cd lidar_align/src git clone https://github.com/ethz-asl/lidar_align.git 将 lidar_align/src/lidar_align/NLOPTConfig.cmake 文件移动到 lidar_align/src/ 下(与lidar_align同级) NLOP…

关于Linux内核code段被改写的原因分析

本文基于Linux-4.19.125&#xff0c; ARM V7&#xff0c;dual core。 1 code 段 Linux的code段&#xff08;或者说text段&#xff09;自_stext开始&#xff0c;到_etext结束&#xff0c;这段内容一般情况下是只读的&#xff0c;在理论上来说&#xff0c;这段数据在设备上应该…

Java设计模式—组合模式(Composite Pattern)

组合模式&#xff08;Composite&#xff09;&#xff0c;将对象组合成树形结构以表示部分-整体的层次结构。组合模式使得用户对单个对象和组合对象的使用具有一致性。 public class CompositeTest {public static void main(String[] args){// 创建主菜单MenuComponent mainMen…

访问网站时你的电脑都做了什么

电脑在访问百度时 首先在本地hosts文件里面查看本地有无域名对应的IP地址&#xff0c;若有就直接返回。若无&#xff0c;则本地DNS服务器当DNS的客户&#xff0c;向其它根域服务器发送报文查询IP地址&#xff0c;简单来说就是帮助主机查找IP&#xff0c;所以递归查询就在客户端…

纯C语言手搓GPT-2,前OpenAI、特斯拉高管新项目火了

ChatGPT狂飙160天&#xff0c;世界已经不是之前的样子。 新建了免费的人工智能中文站https://ai.weoknow.com 新建了收费的人工智能中文站https://ai.hzytsoft.cn/ 更多资源欢迎关注 「Real men program in C.」 众所周知&#xff0c;大语言模型还在快速发展&#xff0c;应该有…

云岚到家项目

一.项目介绍 云岚到家项目是一个家政服务o2o平台&#xff0c;互联网家政是继打车、外卖后的又一个风口&#xff0c;创业者众多&#xff0c;比如&#xff1a;58到家&#xff0c;天鹅到家等&#xff0c;o2o&#xff08;Online To Offline&#xff09;是将线下商务的机会与互联网…

el-table实现表格内部横向拖拽效果

2024.4.2今天我学习了如何对el-table表格组件实现内部横向拖拽的效果&#xff0c;效果&#xff1a; 代码如下&#xff1a; 一、创建utils/底下文件 const crosswise_drag_table function (Vue){// 全局添加table左右拖动效果的指令Vue.directive(tableMove, {bind: function…

C/C++如何快速学习?少走3年弯路

于我而言&#xff0c;最开始学习就是 C&#xff0c;除了计算机专业&#xff0c;其他专业可能学习的第一门编程语言为 C 语言&#xff0c;还是谭浩强爷爷那本&#xff0c;当时想着有点 C 基础&#xff0c;无外乎就是 C 语言的升级版&#xff0c;于是开启了 C 的路程。 语言这个…

归档模式下,物理删除数据文件的完全的恢复

归档模式下&#xff0c;物理删除数据文件的完全的恢复 1、实验环境 环境归档模式 SQL> archive log list Database log mode Archive Mode Automatic archival Enabled Archive destination /arch/archivelog Oldest online log seq…

【STL】stack与queue的底层原理及其实现

文章目录 stack的介绍库中stack的使用栈的模拟实现queue的介绍库中queue的使用queue的模拟实现 stack的介绍 &#xff08;图片来自知乎&#xff09; 1.stack是一种容器适配器&#xff0c;模拟了栈的数据结构。数据只能从一端进去&#xff0c;另一端出来&#xff08;先进后出&am…

需求分析及设计定义

背景 经过不断的折腾&#xff0c;一切过程都是为了呈现输出&#xff0c;这个阶段就是要交付需求和方案的环节了&#xff0c;很多失败的项目就是上来就到这个环节&#xff0c;倒着捣鼓&#xff0c;先写个文档&#xff0c;做个原型&#xff0c;甚至提出方案&#xff0c;然后再和…

Microsoft Visio 参与者 [actor] - 人的形状图标

Microsoft Visio 参与者 [actor] - 人的形状图标 1. 更多形状 -> 搜索形状2. 参与者References 1. 更多形状 -> 搜索形状 2. 参与者 References [1] Yongqiang Cheng, https://yongqiang.blog.csdn.net/

【Node】Node的配置文件的使用,dotenv框架的使用

&#x1f601; 作者简介&#xff1a;一名大四的学生&#xff0c;致力学习前端开发技术 ⭐️个人主页&#xff1a;夜宵饽饽的主页 ❔ 系列专栏&#xff1a;Node.js &#x1f450;学习格言&#xff1a;成功不是终点&#xff0c;失败也并非末日&#xff0c;最重要的是继续前进的勇…

CodeMirror使用: 编写一个在线编辑HTML、JS、CSS文件,网页的模板页面-初实现

前言&#xff1a;前几天编写一个UI模板控制的功能&#xff0c;根据上传的前端模板更换跳转入口主题页面&#xff1b;在编写的时候&#xff0c;突发奇想能不能在列表页面进行在线编辑刚刚上传的模板zip压缩包里的页面...于是经过学习研究有了这篇文章&#xff1b;当日记本一样记…

鸿蒙开发面向对象的面试题~

鸿蒙开发面向对象的面试题是近年来在软件开发领域中备受关注的话题。作为一种新兴的操作系统&#xff0c;鸿蒙系统的开发者需要具备扎实的面向对象编程知识和丰富的开发经验。在面试中&#xff0c;面试官常常会通过一系列的问题来考察面试者对于鸿蒙开发面向对象的理解和应用能…