登录
注册
开源
企业版
高校版
搜索
帮助中心
使用条款
关于我们
开源
企业版
高校版
私有云
模力方舟
登录
注册
代码拉取完成,页面将自动刷新
仓库状态说明
开源项目
>
人工智能
>
机器学习/深度学习
&&
捐赠
捐赠前请先登录
取消
前往登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
Watch
不关注
关注所有动态
仅关注版本发行动态
关注但不提醒动态
88
Star
649
Fork
1.4K
Ascend
/
pytorch
暂停
代码
Issues
41
Pull Requests
350
Wiki
统计
流水线
服务
质量分析
Jenkins for Gitee
腾讯云托管
腾讯云 Serverless
悬镜安全
阿里云 SAE
Codeblitz
SBOM
我知道了,不再自动展开
更新失败,请稍后重试!
移除标识
内容风险标识
本任务被
标识为内容中包含有代码安全 Bug 、隐私泄露等敏感信息,仓库外成员不可访问
安装 pytorch 及 npu插件后, 安装没有报错,在 npu torch 运算时报错
DONE
#I9SJ3P
Bug-Report
Mr.Wang
创建于
2024-05-27 16:19
一、问题现象(附报错日志上下文): 安装都没报错,进行npu torch运算报错 ``` (mindie) root@username:/data/wanghui01/mindie# cat test.py import torch import torch_npu x = torch.randn(2, 2).npu() # x = torch.randn(2, 2) y = torch.randn(2, 2).npu() # y = torch.randn(2, 2) z = x.mm(y) print(z) (mindie) root@username:/data/wanghui01/mindie# (mindie) root@username:/data/wanghui01/mindie# (mindie) root@username:/data/wanghui01/mindie# python test.py Traceback (most recent call last): File "/data/wanghui01/mindie/test.py", line 4, in <module> x = torch.randn(2, 2).npu() File "/data/miniconda3/envs/mindie/lib/python3.10/site-packages/torch/utils/backend_registration.py", line 150, in wrap_tensor_to device_idx = _normalization_device(custom_backend_name, device) File "/data/miniconda3/envs/mindie/lib/python3.10/site-packages/torch/utils/backend_registration.py", line 106, in _normalization_device return _get_current_device_index() File "/data/miniconda3/envs/mindie/lib/python3.10/site-packages/torch/utils/backend_registration.py", line 100, in _get_current_device_index return getattr(getattr(torch, custom_backend_name), _get_device_index)() File "/data/miniconda3/envs/mindie/lib/python3.10/site-packages/torch_npu/npu/utils.py", line 52, in current_device torch_npu.npu._lazy_init() File "/data/miniconda3/envs/mindie/lib/python3.10/site-packages/torch_npu/npu/__init__.py", line 201, in _lazy_init torch_npu._C._npu_init() RuntimeError: Initialize:torch_npu/csrc/core/npu/sys_ctrl/npu_sys_ctrl.cpp:217 NPU error, error code is 500001 [ERROR] 2024-05-27-16:08:33 (PID:17841, Device:0, RankID:-1) ERR00100 PTA call acl api failed [Error]: The internal ACL of the system is incorrect. Rectify the fault based on the error information in the ascend log. EC0010: 2024-05-27-16:08:33.001.843 Failed to import Python module [ModuleNotFoundError: No module named 'tbe'.]. Solution: Check that all required components are properly installed and the specified Python path matches the Python installation directory. (If the path does not match the directory, run set_env.sh in the installation package.) TraceBack (most recent call last): AOE Failed to call InitCannKB [GraphOpt][InitializeInner][InitTbeFunc] Failed to init tbe.[FUNC:InitializeInner][FILE:tbe_op_store_adapter.cc][LINE:1643] [SubGraphOpt][PreCompileOp][InitAdapter] InitializeAdapter adapter [tbe_op_adapter] failed! Ret [4294967295][FUNC:InitializeAdapter][FILE:op_store_adapter_manager.cc][LINE:85] [SubGraphOpt][PreCompileOp][Init] Initialize op store adapter failed, OpsStoreName[tbe-custom].[FUNC:Initialize][FILE:op_store_adapter_manager.cc][LINE:126] [FusionMngr][Init] Op store adapter manager init failed.[FUNC:Initialize][FILE:fusion_manager.cc][LINE:129] PluginManager InvokeAll failed.[FUNC:Initialize][FILE:ops_kernel_manager.cc][LINE:89] OpsManager initialize failed.[FUNC:InnerInitialize][FILE:gelib.cc][LINE:241] GELib::InnerInitialize failed.[FUNC:Initialize][FILE:gelib.cc][LINE:169] GEInitialize failed.[FUNC:GEInitialize][FILE:ge_api.cc][LINE:307] [Initialize][Ge]GEInitialize failed. ge result = 4294967295[FUNC:ReportCallError][FILE:log_inner.cpp][LINE:161] [Init][Compiler]Init compiler failed[FUNC:ReportInnerError][FILE:log_inner.cpp][LINE:145] [Set][Options]OpCompileProcessor init failed![FUNC:ReportInnerError][FILE:log_inner.cpp][LINE:145] ``` 二、软件版本: -- CANN 版本 (e.g., CANN 3.0.x,5.x.x): CANN_8.0.RC2.alpha002 -- Pytorch: pytorch 2.2.0+cpu -- Python 版本: 3.10.14 -- MindStudio版本 (e.g., MindStudio 2.0.0 (beta3)): 无 --操作系统版本 (e.g., Ubuntu 18.04): UOS 1060 三、测试步骤: 依据手册进行环境安装,通过conda创建的python3.10 四、日志信息: ``` (mindie) root@username:/data/wanghui01/mindie# cat /root/.bashrc ... ... source /usr/local/Ascend/ascend-toolkit/set_env.sh source /usr/local/Ascend/toolbox/set_env.sh source /usr/local/Ascend/mindie/set_env.sh (mindie) root@username:/data/wanghui01/mindie# echo $PATH /usr/local/Ascend/mindie/latest/mindie-rt/mindie-atb/atb/bin:/usr/local/Ascend/ascend-toolkit/latest/bin:/usr/local/Ascend/ascend-toolkit/latest/compiler/ccec_compiler/bin:/usr/local/Ascend/ascend-toolkit/latest/tools/ccec_compiler/bin:/usr/local/Ascend/ascend-toolkit/latest/toolkit/tools/ascendc_tools:/usr/local/Ascend/ascend-toolkit/latest/bin:/usr/local/Ascend/ascend-toolkit/latest/compiler/ccec_compiler/bin:/usr/local/Ascend/ascend-toolkit/latest/tools/ccec_compiler/bin:/usr/local/Ascend/ascend-toolkit/latest/toolkit/tools/ascendc_tools:/data/miniconda3/envs/mindie/bin:/data/miniconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/Ascend/toolbox/latest/Ascend-DMI/bin (mindie) root@username:/data/wanghui01/mindie# echo $PYTHONPATH /usr/local/Ascend/mindie/latest/mindie-service/bin:/usr/local/Ascend/ascend-toolkit/latest/python/site-packages:/usr/local/Ascend/ascend-toolkit/latest/opp/built-in/op_impl/ai_core/tbe:/usr/local/Ascend/ascend-toolkit/latest/python/site-packages:/usr/local/Ascend/ascend-toolkit/latest/opp/built-in/op_impl/ai_core/tbe: (mindie) root@username:/data/wanghui01/mindie# ls /usr/local/Ascend/ascend-toolkit/latest/python/site-packages acl auto_tune.egg llm_engine opc_tool-0.1.0.dist-info schedule_search.egg acl.so auto_tune_main llm_engine-0.0.1.dist-info operator_cmp tbe ascendebug bin modelslim op_gen te ascendebug-0.1.0.dist-info dataflow msadvisor-1.0.0.dist-info op_gen-0.1.dist-info te-0.4.0.dist-info ascend_utils dataflow-0.0.1.dist-info msadvisor.abi3.so op_test_frame te_fusion auto_deploy_utils hccl mskpp op_test_frame-0.1.dist-info tik_tune auto_search hccl-0.1.0.dist-info op_compile_tool optune_utils auto_tune hccl_parser op_compile_tool-0.1.0.dist-info schedule_search auto_tune-0.1.0.dist-info hccl_parser-0.1.dist-info opc_tool schedule_search-0.0.1.dist-info (mindie) root@username:/data/wanghui01/mindie# ls /usr/local/Ascend/ascend-toolkit/latest/python/site-packages/tbe /usr/local/Ascend/ascend-toolkit/latest/python/site-packages/tbe (mindie) root@username:/data/wanghui01/mindie# ls /usr/local/Ascend/ascend-toolkit/latest/python/site-packages/tbe /usr/local/Ascend/ascend-toolkit/latest/python/site-packages/tbe (mindie) root@username:/data/wanghui01/mindie# ls /usr/local/Ascend/ascend-toolkit/latest/python/site-packages/tbe/ ls: 无法访问'/usr/local/Ascend/ascend-toolkit/latest/python/site-packages/tbe/': 没有那个文件或目录 (mindie) root@username:/data/wanghui01/mindie# ls /usr/local/Ascend/ascend-toolkit/latest/python/site-packages/tbe /usr/local/Ascend/ascend-toolkit/latest/python/site-packages/tbe (mindie) root@username:/data/wanghui01/mindie# cd /usr/local/Ascend/ascend-toolkit/latest/python/site-packages/tbe -bash: cd: /usr/local/Ascend/ascend-toolkit/latest/python/site-packages/tbe: 没有那个文件或目录 (mindie) root@username:/data/wanghui01/mindie# cd /usr/local/Ascend/ascend-toolkit/latest/python/site-packages/ (mindie) root@username:/usr/local/Ascend/ascend-toolkit/latest/python/site-packages# ls acl auto_tune.egg llm_engine opc_tool-0.1.0.dist-info schedule_search.egg acl.so auto_tune_main llm_engine-0.0.1.dist-info operator_cmp tbe ascendebug bin modelslim op_gen te ascendebug-0.1.0.dist-info dataflow msadvisor-1.0.0.dist-info op_gen-0.1.dist-info te-0.4.0.dist-info ascend_utils dataflow-0.0.1.dist-info msadvisor.abi3.so op_test_frame te_fusion auto_deploy_utils hccl mskpp op_test_frame-0.1.dist-info tik_tune auto_search hccl-0.1.0.dist-info op_compile_tool optune_utils auto_tune hccl_parser op_compile_tool-0.1.0.dist-info schedule_search auto_tune-0.1.0.dist-info hccl_parser-0.1.dist-info opc_tool schedule_search-0.0.1.dist-info (mindie) root@username:/usr/local/Ascend/ascend-toolkit/latest/python/site-packages# ls -al 总用量 108 drwxr-sr-x 5 root root 4096 5月 22 10:56 . drwxr-sr-x 3 root root 4096 5月 22 10:54 .. drwxr-sr-x 2 root root 4096 5月 22 10:56 acl lrwxrwxrwx 1 root root 53 5月 22 10:56 acl.so -> ../../../8.0.RC2.alpha002/python/site-packages/acl.so lrwxrwxrwx 1 root root 81 5月 22 10:56 ascendebug -> /usr/local/Ascend/ascend-toolkit/8.0.RC2.alpha002/python/site-packages/ascendebug lrwxrwxrwx 1 root root 97 5月 22 10:56 ascendebug-0.1.0.dist-info -> /usr/local/Ascend/ascend-toolkit/8.0.RC2.alpha002/python/site-packages/ascendebug-0.1.0.dist-info lrwxrwxrwx 1 root root 44 5月 22 10:56 ascend_utils -> ../../../8.0.RC2.alpha002/tools/ascend_utils lrwxrwxrwx 1 root root 64 5月 22 10:54 auto_deploy_utils -> ../../../8.0.RC2.alpha002/python/site-packages/auto_deploy_utils lrwxrwxrwx 1 root root 58 5月 22 10:54 auto_search -> ../../../8.0.RC2.alpha002/python/site-packages/auto_search lrwxrwxrwx 1 root root 56 5月 22 10:54 auto_tune -> ../../../8.0.RC2.alpha002/python/site-packages/auto_tune lrwxrwxrwx 1 root root 72 5月 22 10:54 auto_tune-0.1.0.dist-info -> ../../../8.0.RC2.alpha002/python/site-packages/auto_tune-0.1.0.dist-info drwxr-sr-x 3 root root 4096 5月 22 10:54 auto_tune.egg lrwxrwxrwx 1 root root 56 5月 22 10:54 auto_tune_main -> ../../../8.0.RC2.alpha002/python/site-packages/auto_tune lrwxrwxrwx 1 root root 74 5月 22 10:56 bin -> /usr/local/Ascend/ascend-toolkit/8.0.RC2.alpha002/python/site-packages/bin lrwxrwxrwx 1 root root 55 5月 22 10:54 dataflow -> ../../../8.0.RC2.alpha002/python/site-packages/dataflow lrwxrwxrwx 1 root root 71 5月 22 10:54 dataflow-0.0.1.dist-info -> ../../../8.0.RC2.alpha002/python/site-packages/dataflow-0.0.1.dist-info lrwxrwxrwx 1 root root 51 5月 22 10:54 hccl -> ../../../8.0.RC2.alpha002/python/site-packages/hccl lrwxrwxrwx 1 root root 67 5月 22 10:54 hccl-0.1.0.dist-info -> ../../../8.0.RC2.alpha002/python/site-packages/hccl-0.1.0.dist-info lrwxrwxrwx 1 root root 82 5月 22 10:56 hccl_parser -> /usr/local/Ascend/ascend-toolkit/8.0.RC2.alpha002/python/site-packages/hccl_parser lrwxrwxrwx 1 root root 96 5月 22 10:56 hccl_parser-0.1.dist-info -> /usr/local/Ascend/ascend-toolkit/8.0.RC2.alpha002/python/site-packages/hccl_parser-0.1.dist-info lrwxrwxrwx 1 root root 57 5月 22 10:54 llm_engine -> ../../../8.0.RC2.alpha002/python/site-packages/llm_engine lrwxrwxrwx 1 root root 73 5月 22 10:54 llm_engine-0.0.1.dist-info -> ../../../8.0.RC2.alpha002/python/site-packages/llm_engine-0.0.1.dist-info lrwxrwxrwx 1 root root 41 5月 22 10:56 modelslim -> ../../../8.0.RC2.alpha002/tools/modelslim lrwxrwxrwx 1 root root 72 5月 22 10:56 msadvisor-1.0.0.dist-info -> ../../../8.0.RC2.alpha002/python/site-packages/msadvisor-1.0.0.dist-info lrwxrwxrwx 1 root root 64 5月 22 10:56 msadvisor.abi3.so -> ../../../8.0.RC2.alpha002/python/site-packages/msadvisor.abi3.so lrwxrwxrwx 1 root root 43 5月 22 10:56 mskpp -> ../../../8.0.RC2.alpha002/tools/msopt/mskpp lrwxrwxrwx 1 root root 62 5月 22 10:54 op_compile_tool -> ../../../8.0.RC2.alpha002/python/site-packages/op_compile_tool lrwxrwxrwx 1 root root 78 5月 22 10:54 op_compile_tool-0.1.0.dist-info -> ../../../8.0.RC2.alpha002/python/site-packages/op_compile_tool-0.1.0.dist-info lrwxrwxrwx 1 root root 55 5月 22 10:54 opc_tool -> ../../../8.0.RC2.alpha002/python/site-packages/opc_tool lrwxrwxrwx 1 root root 71 5月 22 10:54 opc_tool-0.1.0.dist-info -> ../../../8.0.RC2.alpha002/python/site-packages/opc_tool-0.1.0.dist-info lrwxrwxrwx 1 root root 44 5月 22 10:56 operator_cmp -> ../../../8.0.RC2.alpha002/tools/operator_cmp lrwxrwxrwx 1 root root 77 5月 22 10:56 op_gen -> /usr/local/Ascend/ascend-toolkit/8.0.RC2.alpha002/python/site-packages/op_gen lrwxrwxrwx 1 root root 91 5月 22 10:56 op_gen-0.1.dist-info -> /usr/local/Ascend/ascend-toolkit/8.0.RC2.alpha002/python/site-packages/op_gen-0.1.dist-info lrwxrwxrwx 1 root root 84 5月 22 10:56 op_test_frame -> /usr/local/Ascend/ascend-toolkit/8.0.RC2.alpha002/python/site-packages/op_test_frame lrwxrwxrwx 1 root root 98 5月 22 10:56 op_test_frame-0.1.dist-info -> /usr/local/Ascend/ascend-toolkit/8.0.RC2.alpha002/python/site-packages/op_test_frame-0.1.dist-info lrwxrwxrwx 1 root root 59 5月 22 10:54 optune_utils -> ../../../8.0.RC2.alpha002/python/site-packages/optune_utils lrwxrwxrwx 1 root root 62 5月 22 10:54 schedule_search -> ../../../8.0.RC2.alpha002/python/site-packages/schedule_search lrwxrwxrwx 1 root root 78 5月 22 10:54 schedule_search-0.0.1.dist-info -> ../../../8.0.RC2.alpha002/python/site-packages/schedule_search-0.0.1.dist-info drwxr-sr-x 2 root root 4096 5月 22 10:54 schedule_search.egg lrwxrwxrwx 1 root root 50 5月 22 10:54 tbe -> ../../../8.0.RC2.alpha002/python/site-packages/tbe lrwxrwxrwx 1 root root 49 5月 22 10:54 te -> ../../../8.0.RC2.alpha002/python/site-packages/te lrwxrwxrwx 1 root root 65 5月 22 10:54 te-0.4.0.dist-info -> ../../../8.0.RC2.alpha002/python/site-packages/te-0.4.0.dist-info lrwxrwxrwx 1 root root 56 5月 22 10:54 te_fusion -> ../../../8.0.RC2.alpha002/python/site-packages/te_fusion lrwxrwxrwx 1 root root 55 5月 22 10:54 tik_tune -> ../../../8.0.RC2.alpha002/python/site-packages/tik_tune (mindie) root@username:/usr/local/Ascend/ascend-toolkit/latest/python/site-packages# ls ../../../8.0.RC2.alpha002/python/site-packages/tbe ls: 无法访问'../../../8.0.RC2.alpha002/python/site-packages/tbe': 没有那个文件或目录 (mindie) root@username:/usr/local/Ascend/ascend-toolkit/latest/python/site-packages# ls ../../../8.0.RC2.alpha002/python/site-packages/ acl auto_tune.egg llm_engine operator_cmp acl.so auto_tune_main llm_engine-0.0.1.dist-info op_gen ascendebug bin modelslim op_gen-0.1.dist-info ascendebug-0.1.0.dist-info biprof_tool msadvisor-1.0.0.dist-info op_test_frame ascend_utils biprof_tool-0.1.0.dist-info msadvisor.abi3.so op_test_frame-0.1.dist-info auto_deploy_utils dataflow mskpp optune_utils auto_deploy_utils-0.1.0.dist-info dataflow-0.0.1.dist-info op_compile_tool schedule_search auto_search hccl_parser op_compile_tool-0.1.0.dist-info schedule_search-0.0.1.dist-info auto_tune hccl_parser-0.1.dist-info opc_tool schedule_search.egg auto_tune-0.1.0.dist-info LICENSE opc_tool-0.1.0.dist-info tik_tune (mindie) root@username:/usr/local/Ascend/ascend-toolkit/latest/python/site-packages# ls /usr/local/Ascend/ascend-toolkit/latest/opp/built-in/op_impl/ai_core/tbe config impl impl_mode kernel op_api op_tiling (mindie) root@username:/usr/local/Ascend/ascend-toolkit/latest/python/site-packages# ```
一、问题现象(附报错日志上下文): 安装都没报错,进行npu torch运算报错 ``` (mindie) root@username:/data/wanghui01/mindie# cat test.py import torch import torch_npu x = torch.randn(2, 2).npu() # x = torch.randn(2, 2) y = torch.randn(2, 2).npu() # y = torch.randn(2, 2) z = x.mm(y) print(z) (mindie) root@username:/data/wanghui01/mindie# (mindie) root@username:/data/wanghui01/mindie# (mindie) root@username:/data/wanghui01/mindie# python test.py Traceback (most recent call last): File "/data/wanghui01/mindie/test.py", line 4, in <module> x = torch.randn(2, 2).npu() File "/data/miniconda3/envs/mindie/lib/python3.10/site-packages/torch/utils/backend_registration.py", line 150, in wrap_tensor_to device_idx = _normalization_device(custom_backend_name, device) File "/data/miniconda3/envs/mindie/lib/python3.10/site-packages/torch/utils/backend_registration.py", line 106, in _normalization_device return _get_current_device_index() File "/data/miniconda3/envs/mindie/lib/python3.10/site-packages/torch/utils/backend_registration.py", line 100, in _get_current_device_index return getattr(getattr(torch, custom_backend_name), _get_device_index)() File "/data/miniconda3/envs/mindie/lib/python3.10/site-packages/torch_npu/npu/utils.py", line 52, in current_device torch_npu.npu._lazy_init() File "/data/miniconda3/envs/mindie/lib/python3.10/site-packages/torch_npu/npu/__init__.py", line 201, in _lazy_init torch_npu._C._npu_init() RuntimeError: Initialize:torch_npu/csrc/core/npu/sys_ctrl/npu_sys_ctrl.cpp:217 NPU error, error code is 500001 [ERROR] 2024-05-27-16:08:33 (PID:17841, Device:0, RankID:-1) ERR00100 PTA call acl api failed [Error]: The internal ACL of the system is incorrect. Rectify the fault based on the error information in the ascend log. EC0010: 2024-05-27-16:08:33.001.843 Failed to import Python module [ModuleNotFoundError: No module named 'tbe'.]. Solution: Check that all required components are properly installed and the specified Python path matches the Python installation directory. (If the path does not match the directory, run set_env.sh in the installation package.) TraceBack (most recent call last): AOE Failed to call InitCannKB [GraphOpt][InitializeInner][InitTbeFunc] Failed to init tbe.[FUNC:InitializeInner][FILE:tbe_op_store_adapter.cc][LINE:1643] [SubGraphOpt][PreCompileOp][InitAdapter] InitializeAdapter adapter [tbe_op_adapter] failed! Ret [4294967295][FUNC:InitializeAdapter][FILE:op_store_adapter_manager.cc][LINE:85] [SubGraphOpt][PreCompileOp][Init] Initialize op store adapter failed, OpsStoreName[tbe-custom].[FUNC:Initialize][FILE:op_store_adapter_manager.cc][LINE:126] [FusionMngr][Init] Op store adapter manager init failed.[FUNC:Initialize][FILE:fusion_manager.cc][LINE:129] PluginManager InvokeAll failed.[FUNC:Initialize][FILE:ops_kernel_manager.cc][LINE:89] OpsManager initialize failed.[FUNC:InnerInitialize][FILE:gelib.cc][LINE:241] GELib::InnerInitialize failed.[FUNC:Initialize][FILE:gelib.cc][LINE:169] GEInitialize failed.[FUNC:GEInitialize][FILE:ge_api.cc][LINE:307] [Initialize][Ge]GEInitialize failed. ge result = 4294967295[FUNC:ReportCallError][FILE:log_inner.cpp][LINE:161] [Init][Compiler]Init compiler failed[FUNC:ReportInnerError][FILE:log_inner.cpp][LINE:145] [Set][Options]OpCompileProcessor init failed![FUNC:ReportInnerError][FILE:log_inner.cpp][LINE:145] ``` 二、软件版本: -- CANN 版本 (e.g., CANN 3.0.x,5.x.x): CANN_8.0.RC2.alpha002 -- Pytorch: pytorch 2.2.0+cpu -- Python 版本: 3.10.14 -- MindStudio版本 (e.g., MindStudio 2.0.0 (beta3)): 无 --操作系统版本 (e.g., Ubuntu 18.04): UOS 1060 三、测试步骤: 依据手册进行环境安装,通过conda创建的python3.10 四、日志信息: ``` (mindie) root@username:/data/wanghui01/mindie# cat /root/.bashrc ... ... source /usr/local/Ascend/ascend-toolkit/set_env.sh source /usr/local/Ascend/toolbox/set_env.sh source /usr/local/Ascend/mindie/set_env.sh (mindie) root@username:/data/wanghui01/mindie# echo $PATH /usr/local/Ascend/mindie/latest/mindie-rt/mindie-atb/atb/bin:/usr/local/Ascend/ascend-toolkit/latest/bin:/usr/local/Ascend/ascend-toolkit/latest/compiler/ccec_compiler/bin:/usr/local/Ascend/ascend-toolkit/latest/tools/ccec_compiler/bin:/usr/local/Ascend/ascend-toolkit/latest/toolkit/tools/ascendc_tools:/usr/local/Ascend/ascend-toolkit/latest/bin:/usr/local/Ascend/ascend-toolkit/latest/compiler/ccec_compiler/bin:/usr/local/Ascend/ascend-toolkit/latest/tools/ccec_compiler/bin:/usr/local/Ascend/ascend-toolkit/latest/toolkit/tools/ascendc_tools:/data/miniconda3/envs/mindie/bin:/data/miniconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/Ascend/toolbox/latest/Ascend-DMI/bin (mindie) root@username:/data/wanghui01/mindie# echo $PYTHONPATH /usr/local/Ascend/mindie/latest/mindie-service/bin:/usr/local/Ascend/ascend-toolkit/latest/python/site-packages:/usr/local/Ascend/ascend-toolkit/latest/opp/built-in/op_impl/ai_core/tbe:/usr/local/Ascend/ascend-toolkit/latest/python/site-packages:/usr/local/Ascend/ascend-toolkit/latest/opp/built-in/op_impl/ai_core/tbe: (mindie) root@username:/data/wanghui01/mindie# ls /usr/local/Ascend/ascend-toolkit/latest/python/site-packages acl auto_tune.egg llm_engine opc_tool-0.1.0.dist-info schedule_search.egg acl.so auto_tune_main llm_engine-0.0.1.dist-info operator_cmp tbe ascendebug bin modelslim op_gen te ascendebug-0.1.0.dist-info dataflow msadvisor-1.0.0.dist-info op_gen-0.1.dist-info te-0.4.0.dist-info ascend_utils dataflow-0.0.1.dist-info msadvisor.abi3.so op_test_frame te_fusion auto_deploy_utils hccl mskpp op_test_frame-0.1.dist-info tik_tune auto_search hccl-0.1.0.dist-info op_compile_tool optune_utils auto_tune hccl_parser op_compile_tool-0.1.0.dist-info schedule_search auto_tune-0.1.0.dist-info hccl_parser-0.1.dist-info opc_tool schedule_search-0.0.1.dist-info (mindie) root@username:/data/wanghui01/mindie# ls /usr/local/Ascend/ascend-toolkit/latest/python/site-packages/tbe /usr/local/Ascend/ascend-toolkit/latest/python/site-packages/tbe (mindie) root@username:/data/wanghui01/mindie# ls /usr/local/Ascend/ascend-toolkit/latest/python/site-packages/tbe /usr/local/Ascend/ascend-toolkit/latest/python/site-packages/tbe (mindie) root@username:/data/wanghui01/mindie# ls /usr/local/Ascend/ascend-toolkit/latest/python/site-packages/tbe/ ls: 无法访问'/usr/local/Ascend/ascend-toolkit/latest/python/site-packages/tbe/': 没有那个文件或目录 (mindie) root@username:/data/wanghui01/mindie# ls /usr/local/Ascend/ascend-toolkit/latest/python/site-packages/tbe /usr/local/Ascend/ascend-toolkit/latest/python/site-packages/tbe (mindie) root@username:/data/wanghui01/mindie# cd /usr/local/Ascend/ascend-toolkit/latest/python/site-packages/tbe -bash: cd: /usr/local/Ascend/ascend-toolkit/latest/python/site-packages/tbe: 没有那个文件或目录 (mindie) root@username:/data/wanghui01/mindie# cd /usr/local/Ascend/ascend-toolkit/latest/python/site-packages/ (mindie) root@username:/usr/local/Ascend/ascend-toolkit/latest/python/site-packages# ls acl auto_tune.egg llm_engine opc_tool-0.1.0.dist-info schedule_search.egg acl.so auto_tune_main llm_engine-0.0.1.dist-info operator_cmp tbe ascendebug bin modelslim op_gen te ascendebug-0.1.0.dist-info dataflow msadvisor-1.0.0.dist-info op_gen-0.1.dist-info te-0.4.0.dist-info ascend_utils dataflow-0.0.1.dist-info msadvisor.abi3.so op_test_frame te_fusion auto_deploy_utils hccl mskpp op_test_frame-0.1.dist-info tik_tune auto_search hccl-0.1.0.dist-info op_compile_tool optune_utils auto_tune hccl_parser op_compile_tool-0.1.0.dist-info schedule_search auto_tune-0.1.0.dist-info hccl_parser-0.1.dist-info opc_tool schedule_search-0.0.1.dist-info (mindie) root@username:/usr/local/Ascend/ascend-toolkit/latest/python/site-packages# ls -al 总用量 108 drwxr-sr-x 5 root root 4096 5月 22 10:56 . drwxr-sr-x 3 root root 4096 5月 22 10:54 .. drwxr-sr-x 2 root root 4096 5月 22 10:56 acl lrwxrwxrwx 1 root root 53 5月 22 10:56 acl.so -> ../../../8.0.RC2.alpha002/python/site-packages/acl.so lrwxrwxrwx 1 root root 81 5月 22 10:56 ascendebug -> /usr/local/Ascend/ascend-toolkit/8.0.RC2.alpha002/python/site-packages/ascendebug lrwxrwxrwx 1 root root 97 5月 22 10:56 ascendebug-0.1.0.dist-info -> /usr/local/Ascend/ascend-toolkit/8.0.RC2.alpha002/python/site-packages/ascendebug-0.1.0.dist-info lrwxrwxrwx 1 root root 44 5月 22 10:56 ascend_utils -> ../../../8.0.RC2.alpha002/tools/ascend_utils lrwxrwxrwx 1 root root 64 5月 22 10:54 auto_deploy_utils -> ../../../8.0.RC2.alpha002/python/site-packages/auto_deploy_utils lrwxrwxrwx 1 root root 58 5月 22 10:54 auto_search -> ../../../8.0.RC2.alpha002/python/site-packages/auto_search lrwxrwxrwx 1 root root 56 5月 22 10:54 auto_tune -> ../../../8.0.RC2.alpha002/python/site-packages/auto_tune lrwxrwxrwx 1 root root 72 5月 22 10:54 auto_tune-0.1.0.dist-info -> ../../../8.0.RC2.alpha002/python/site-packages/auto_tune-0.1.0.dist-info drwxr-sr-x 3 root root 4096 5月 22 10:54 auto_tune.egg lrwxrwxrwx 1 root root 56 5月 22 10:54 auto_tune_main -> ../../../8.0.RC2.alpha002/python/site-packages/auto_tune lrwxrwxrwx 1 root root 74 5月 22 10:56 bin -> /usr/local/Ascend/ascend-toolkit/8.0.RC2.alpha002/python/site-packages/bin lrwxrwxrwx 1 root root 55 5月 22 10:54 dataflow -> ../../../8.0.RC2.alpha002/python/site-packages/dataflow lrwxrwxrwx 1 root root 71 5月 22 10:54 dataflow-0.0.1.dist-info -> ../../../8.0.RC2.alpha002/python/site-packages/dataflow-0.0.1.dist-info lrwxrwxrwx 1 root root 51 5月 22 10:54 hccl -> ../../../8.0.RC2.alpha002/python/site-packages/hccl lrwxrwxrwx 1 root root 67 5月 22 10:54 hccl-0.1.0.dist-info -> ../../../8.0.RC2.alpha002/python/site-packages/hccl-0.1.0.dist-info lrwxrwxrwx 1 root root 82 5月 22 10:56 hccl_parser -> /usr/local/Ascend/ascend-toolkit/8.0.RC2.alpha002/python/site-packages/hccl_parser lrwxrwxrwx 1 root root 96 5月 22 10:56 hccl_parser-0.1.dist-info -> /usr/local/Ascend/ascend-toolkit/8.0.RC2.alpha002/python/site-packages/hccl_parser-0.1.dist-info lrwxrwxrwx 1 root root 57 5月 22 10:54 llm_engine -> ../../../8.0.RC2.alpha002/python/site-packages/llm_engine lrwxrwxrwx 1 root root 73 5月 22 10:54 llm_engine-0.0.1.dist-info -> ../../../8.0.RC2.alpha002/python/site-packages/llm_engine-0.0.1.dist-info lrwxrwxrwx 1 root root 41 5月 22 10:56 modelslim -> ../../../8.0.RC2.alpha002/tools/modelslim lrwxrwxrwx 1 root root 72 5月 22 10:56 msadvisor-1.0.0.dist-info -> ../../../8.0.RC2.alpha002/python/site-packages/msadvisor-1.0.0.dist-info lrwxrwxrwx 1 root root 64 5月 22 10:56 msadvisor.abi3.so -> ../../../8.0.RC2.alpha002/python/site-packages/msadvisor.abi3.so lrwxrwxrwx 1 root root 43 5月 22 10:56 mskpp -> ../../../8.0.RC2.alpha002/tools/msopt/mskpp lrwxrwxrwx 1 root root 62 5月 22 10:54 op_compile_tool -> ../../../8.0.RC2.alpha002/python/site-packages/op_compile_tool lrwxrwxrwx 1 root root 78 5月 22 10:54 op_compile_tool-0.1.0.dist-info -> ../../../8.0.RC2.alpha002/python/site-packages/op_compile_tool-0.1.0.dist-info lrwxrwxrwx 1 root root 55 5月 22 10:54 opc_tool -> ../../../8.0.RC2.alpha002/python/site-packages/opc_tool lrwxrwxrwx 1 root root 71 5月 22 10:54 opc_tool-0.1.0.dist-info -> ../../../8.0.RC2.alpha002/python/site-packages/opc_tool-0.1.0.dist-info lrwxrwxrwx 1 root root 44 5月 22 10:56 operator_cmp -> ../../../8.0.RC2.alpha002/tools/operator_cmp lrwxrwxrwx 1 root root 77 5月 22 10:56 op_gen -> /usr/local/Ascend/ascend-toolkit/8.0.RC2.alpha002/python/site-packages/op_gen lrwxrwxrwx 1 root root 91 5月 22 10:56 op_gen-0.1.dist-info -> /usr/local/Ascend/ascend-toolkit/8.0.RC2.alpha002/python/site-packages/op_gen-0.1.dist-info lrwxrwxrwx 1 root root 84 5月 22 10:56 op_test_frame -> /usr/local/Ascend/ascend-toolkit/8.0.RC2.alpha002/python/site-packages/op_test_frame lrwxrwxrwx 1 root root 98 5月 22 10:56 op_test_frame-0.1.dist-info -> /usr/local/Ascend/ascend-toolkit/8.0.RC2.alpha002/python/site-packages/op_test_frame-0.1.dist-info lrwxrwxrwx 1 root root 59 5月 22 10:54 optune_utils -> ../../../8.0.RC2.alpha002/python/site-packages/optune_utils lrwxrwxrwx 1 root root 62 5月 22 10:54 schedule_search -> ../../../8.0.RC2.alpha002/python/site-packages/schedule_search lrwxrwxrwx 1 root root 78 5月 22 10:54 schedule_search-0.0.1.dist-info -> ../../../8.0.RC2.alpha002/python/site-packages/schedule_search-0.0.1.dist-info drwxr-sr-x 2 root root 4096 5月 22 10:54 schedule_search.egg lrwxrwxrwx 1 root root 50 5月 22 10:54 tbe -> ../../../8.0.RC2.alpha002/python/site-packages/tbe lrwxrwxrwx 1 root root 49 5月 22 10:54 te -> ../../../8.0.RC2.alpha002/python/site-packages/te lrwxrwxrwx 1 root root 65 5月 22 10:54 te-0.4.0.dist-info -> ../../../8.0.RC2.alpha002/python/site-packages/te-0.4.0.dist-info lrwxrwxrwx 1 root root 56 5月 22 10:54 te_fusion -> ../../../8.0.RC2.alpha002/python/site-packages/te_fusion lrwxrwxrwx 1 root root 55 5月 22 10:54 tik_tune -> ../../../8.0.RC2.alpha002/python/site-packages/tik_tune (mindie) root@username:/usr/local/Ascend/ascend-toolkit/latest/python/site-packages# ls ../../../8.0.RC2.alpha002/python/site-packages/tbe ls: 无法访问'../../../8.0.RC2.alpha002/python/site-packages/tbe': 没有那个文件或目录 (mindie) root@username:/usr/local/Ascend/ascend-toolkit/latest/python/site-packages# ls ../../../8.0.RC2.alpha002/python/site-packages/ acl auto_tune.egg llm_engine operator_cmp acl.so auto_tune_main llm_engine-0.0.1.dist-info op_gen ascendebug bin modelslim op_gen-0.1.dist-info ascendebug-0.1.0.dist-info biprof_tool msadvisor-1.0.0.dist-info op_test_frame ascend_utils biprof_tool-0.1.0.dist-info msadvisor.abi3.so op_test_frame-0.1.dist-info auto_deploy_utils dataflow mskpp optune_utils auto_deploy_utils-0.1.0.dist-info dataflow-0.0.1.dist-info op_compile_tool schedule_search auto_search hccl_parser op_compile_tool-0.1.0.dist-info schedule_search-0.0.1.dist-info auto_tune hccl_parser-0.1.dist-info opc_tool schedule_search.egg auto_tune-0.1.0.dist-info LICENSE opc_tool-0.1.0.dist-info tik_tune (mindie) root@username:/usr/local/Ascend/ascend-toolkit/latest/python/site-packages# ls /usr/local/Ascend/ascend-toolkit/latest/opp/built-in/op_impl/ai_core/tbe config impl impl_mode kernel op_api op_tiling (mindie) root@username:/usr/local/Ascend/ascend-toolkit/latest/python/site-packages# ```
评论 (
1
)
登录
后才可以发表评论
状态
DONE
TODO
Analysing
ACCEPTED
WIP
Feedback
TEST
DONE
REJECTED
负责人
未设置
标签
未设置
项目
未立项任务
未立项任务
里程碑
未关联里程碑
未关联里程碑
Pull Requests
未关联
未关联
关联的 Pull Requests 被合并后可能会关闭此 issue
分支
未关联
分支 (79)
标签 (186)
master
v2.8.0
v2.1.0
v2.6.0
v2.7.1
v2.5.1
v2.6.0-7.1.0
v2.5.1-7.1.0
v2.1.0-7.1.0
revert-merge-23967-master
revert-merge-23966-v2.8.0
revert-merge-23965-v2.7.1
revert-merge-23964-v2.6.0
revert-merge-23962-v2.5.1
revert-merge-23789-v2.1.0
v2.1.0-7.0.0
v2.4.0-7.0.0
v2.4.0
v2.3.1
v2.3.1-7.0.0
v2.5.1-7.0.0
v2.4.0-6.0.0
v2.3.1-6.0.0
v2.1.0-6.0.0
v2.1.0-6.0.rc3
v2.3.1-6.0.rc3
v2.4.0-6.0.rc3
v2.2.0
v1.11.0-6.0.rc1
v2.1.0-6.0.rc1
v2.2.0-6.0.rc1
v1.11.0-6.0.rc2
v2.1.0-6.0.rc2
v2.2.0-6.0.rc2
v2.3.1-6.0.rc2
v1.11.0
v2.1.0-5.0.0
v2.0.1-5.0.0
v1.11.0-5.0.0
v2.0.1
v2.1.0-5.0.rc3
v1.11.0-5.0.rc3
v2.0.1-5.0.rc3
v1.11.0-5.0.rc3.3
v1.8.1
v1.11.0-x1
v1.8.1-5.0.rc3
v1.11.0-5.0.rc2.2
v1.11.0-zj
v1.11.0-5.0.rc2.1
v2.0.1-5.0.rc2
v1.11.0-5.0.rc2
v1.8.1-5.0.rc2
v2.0.0-5.0.rc2
v1.8.1-5.0.rc1
v1.11.0-5.0.rc1
v1.11.0-yd
v1.11.0-xf
v1.11.0-infer
v1.11.0-bigkernel
v1.11.0-host_api
v1.8.1-3.0.0
v1.11.0-5.0.rc2.t100
v1.8.1-5.0.rc2.t100
v1.8.1-3.0.0-dev
v1.11.0-3.0.0
v2.0-dev
v1.8.1-3.0.rc3
v1.5.0-3.0.0
v1.5.0
v1.8.1-3.0.rc1
v1.11.0-3.0.rc3
v1.8.1-3.0.rc2
v1.5.0-3.0.rc3
v1.5.0-3.0.rc2
2.0.4.tr5
v1.5.0-3.0.rc1
2.0.2.tr5
2.0.3.tr5
v7.2.RC1.alpha002-pytorch2.8.0
v7.2.RC1.alpha002-pytorch2.7.1
v7.2.RC1.alpha002-pytorch2.6.0
v7.2.RC1.alpha002-pytorch2.1.0
v7.1.0.2-pytorch2.5.1
v7.1.0.2-pytorch2.6.0
v7.1.0.2-pytorch2.1.0
v7.0.0.1-pytorch2.4.0
v7.0.0.1-pytorch2.1.0
v7.2.RC1.alpha001-pytorch2.8.0
v7.2.RC1.alpha001-pytorch2.7.1
v7.2.RC1.alpha001-pytorch2.6.0
v7.2.RC1.alpha001-pytorch2.5.1
v7.2.RC1.alpha001-pytorch2.1.0
v7.1.0.1-pytorch2.6.0
v7.1.0.1-pytorch2.5.1
v7.1.0.1-pytorch2.1.0
v7.1.0-pytorch2.6.0
v7.1.0-pytorch2.5.1
v7.1.0-pytorch2.1.0
v7.1.RC1.alpha003-pytorch2.6.0
v7.1.RC1.alpha003-pytorch2.5.1
v7.1.RC1.alpha003-pytorch2.1.0
v7.1.RC1.alpha002-pytorch2.7.1
v7.1.RC1.alpha002-pytorch2.6.0
v7.1.RC1.alpha002-pytorch2.5.1
v7.1.RC1.alpha002-pytorch2.4.0
v7.1.RC1.alpha002-pytorch2.3.1
v7.1.RC1.alpha002-pytorch2.1.0
v6.0.0.1-pytorch2.4.0
v6.0.0.1-pytorch2.3.1
v6.0.0.1-pytorch2.1.0
v7.1.RC1.alpha001-pytorch2.6.0
v7.1.RC1.alpha001-pytorch2.5.1
v7.1.RC1.alpha001-pytorch2.4.0
v7.1.RC1.alpha001-pytorch2.3.1
v7.1.RC1.alpha001-pytorch2.1.0
v7.0.0-pytorch2.5.1
v7.0.0-pytorch2.4.0
v7.0.0-pytorch2.3.1
v7.0.RC1.alpha002-pytorch2.6.0
v7.0.0-pytorch2.1.0
v7.0.RC1.alpha002-pytorch2.5.1
v7.0.RC1.alpha002-pytorch2.4.0
v7.0.RC1.alpha002-pytorch2.3.1
v7.0.RC1.alpha002-pytorch2.1.0
v7.0.RC1.alpha001-pytorch2.5.1
v7.0.RC1.alpha001-pytorch2.1.0
v7.0.RC1.alpha001-pytorch2.4.0
v7.0.RC1.alpha001-pytorch2.3.1
v6.0.0-pytorch2.4.0
v6.0.0-pytorch2.3.1
v6.0.0-pytorch2.1.0
v6.0.0.alpha003-pytorch2.4.0
v6.0.0.alpha003-pytorch2.3.1
v6.0.0.alpha003-pytorch2.1.0
v6.0.0.alpha002-pytorch2.4.0
v6.0.0.alpha002-pytorch2.3.1
v6.0.0.alpha002-pytorch2.1.0
v6.0.0.alpha001-pytorch2.5.1
v6.0.rc3-pytorch2.4.0
v6.0.rc3-pytorch2.3.1
v6.0.rc3-pytorch2.1.0
v6.0.0.alpha001-pytorch2.4.0
v6.0.0.alpha001-pytorch2.3.1
v6.0.0.alpha001-pytorch2.1.0
v6.0.rc2.1-pytorch1.11.0
v6.0.rc2.1-pytorch2.3.1
v6.0.rc2.1-pytorch2.2.0
v6.0.rc2.1-pytorch2.1.0
v6.0.rc3.alpha003-pytorch2.3.1
v6.0.rc3.alpha003-pytorch2.1.0
v6.0.rc3.alpha001-pytorch2.4.0
v6.0.rc3.alpha002-pytorch2.3.1
v6.0.rc3.alpha002-pytorch2.2.0
v6.0.rc3.alpha002-pytorch2.1.0
v6.0.rc3.alpha002-pytorch1.11.0
v6.0.rc2-pytorch2.1.0
v6.0.rc2-pytorch2.3.1
v6.0.rc2-pytorch2.2.0
v6.0.rc2-pytorch1.11.0
v6.0.rc3.alpha001-pytorch2.3.1
v6.0.rc3.alpha001-pytorch2.2.0
v6.0.rc3.alpha001-pytorch2.1.0
v6.0.rc3.alpha001-pytorch1.11.0
v6.0.rc2.alpha002-pytorch2.3.1
v6.0.rc2.alpha003-pytorch1.11.0
v6.0.rc2.alpha003-pytorch2.2.0
v6.0.rc2.alpha003-pytorch2.1.0
v6.0.rc1.1-pytorch2.2.0
v6.0.rc1.1-pytorch2.1.0
v6.0.rc1.1-pytorch1.11.0
v5.0.1.2-pytorch1.11.0
v5.0.1.2-pytorch2.1.0
v5.0.1.2-pytorch2.0.1
v6.0.rc2.alpha002-pytorch2.2.0
v6.0.rc2.alpha002-pytorch2.1.0
v6.0.rc2.alpha002-pytorch1.11.0
v6.0.rc1-pytorch2.2.0
v6.0.rc1-pytorch2.1.0
v6.0.rc1-pytorch1.11.0
v6.0.rc2.alpha001-pytorch2.2.0
v6.0.rc2.alpha001-pytorch2.1.0
v6.0.rc2.alpha001-pytorch1.11.0
v6.0.rc1.alpha003-pytorch2.0.1
v6.0.rc1.alpha003-pytorch2.1.0
v5.0.1.1-pytorch2.0.1
v5.0.1.1-pytorch1.11.0
v5.0.1.1-pytorch2.1.0
v6.0.rc1.alpha003-pytorch1.11.0
v6.0.rc1.alpha002-pytorch2.1.0
v6.0.rc1.alpha002-pytorch1.11.0
v6.0.rc1.alpha002-pytorch2.0.1
v6.0.rc1.alpha001-pytorch2.2.0
v5.0.1-pytorch2.1.0
v5.0.1-pytorch2.0.1
v5.0.1-pytorch1.11.0
v6.0.RC1.alpha001-pytorch2.0.1
v6.0.RC1.alpha001-pytorch2.1.0
v6.0.RC1.alpha001-pytorch1.11.0
v5.0.0-pytorch2.1.0
v5.0.0-pytorch2.0.1
v5.0.0-pytorch1.11.0
v5.0.0.alpha003-pytorch2.1.0
v5.0.0.alpha003-pytorch2.0.1
v5.0.0.alpha003-pytorch1.11.0
v5.0.rc3.3-pytorch1.11.0
v5.0.rc3.2-pytorch1.11.0
v5.0.0.alpha002-pytorch2.1.0
v5.0.0.alpha002-pytorch2.0.1
v5.0.0.alpha002-pytorch1.11.0
v5.0.rc3.1-pytorch1.11.0
v5.0.0.alpha001-pytorch2.1.0
v5.0.0.alpha001-pytorch2.0.1
v5.0.0.alpha001-pytorch1.11.0
v5.0.rc3-pytorch2.1.0
v5.0.rc3-pytorch2.0.1
v5.0.rc3-pytorch1.11.0
v5.0.rc3.alpha003-pytorch2.0.1
v5.0.rc3.alpha003-pytorch1.11.0
v5.0.rc3.alpha003-pytorch1.8.1
v5.0.rc2.2-pytorch1.11.0
v5.0.rc2.1-pytorch1.11.0
v5.0.rc3.alpha002-pytorch2.0.1
v5.0.rc3.alpha002-pytorch1.11.0
v5.0.rc3.alpha002-pytorch1.8.1
v5.0.rc2-pytorch2.0.1
v5.0.rc2-pytorch1.11.0
v5.0.rc2-pytorch1.8.1
v5.0.rc3.alpha001-pytorch1.8.1
v5.0.rc3.alpha001-pytorch1.11.0
v5.0.rc2.alpha003-pytorch1.11.0
v5.0.rc2.alpha003-pytorch1.8.1
v5.0.rc2.alpha002-pytorch1.11.0
v5.0.rc2.alpha002-pytorch1.8.1
v5.0.rc1.alpha003-pytorch1.11.0
v5.0.rc1.alpha003-pytorch1.8.1
v5.0.rc1-pytorch1.11.0
v5.0.rc1-pytorch1.8.1
v5.0.rc1.alpha002-pytorch1.11.0
v5.0.rc1.alpha002-pytorch1.8.1
v5.0.rc1.alpha001-pytorch1.11.0
v5.0.rc1.alpha001-pytorch1.8.1
v3.0.0-pytorch1.11.0
v3.0.0-pytorch1.8.1
v3.0.0-pytorch1.5.0
v3.0.alpha006-pytorch1.8.1
v3.0.alpha005-pytorch1.8.1
v3.0.alpha003-pytorch1.8.1
v3.0.rc3-pytorch1.11.0
v3.0.rc3-pytorch1.8.1
v3.0.rc3-pytorch1.5.0
v3.0.rc2-pytorch1.8.1
v3.0.rc2-pytorch1.5.0
v3.0.rc1-pytorch1.8.1
v3.0.rc1-pytorch1.5.0
v2.0.4
v2.0.4-rc2
v2.0.4-rc1
v2.0.3.1
v2.0.3
v2.0.3-rc4
v2.0.3-rc3
v2.0.3-rc2
v2.0.3-rc1
v2.0.2
开始日期   -   截止日期
-
置顶选项
不置顶
置顶等级:高
置顶等级:中
置顶等级:低
优先级
不指定
严重
主要
次要
不重要
预计工期
(小时)
参与者(1)
Python
1
https://gitee.com/ascend/pytorch.git
git@gitee.com:ascend/pytorch.git
ascend
pytorch
pytorch
点此查找更多帮助
搜索帮助
Git 命令在线学习
如何在 Gitee 导入 GitHub 仓库
Git 仓库基础操作
企业版和社区版功能对比
SSH 公钥设置
如何处理代码冲突
仓库体积过大,如何减小?
如何找回被删除的仓库数据
Gitee 产品配额说明
GitHub仓库快速导入Gitee及同步更新
什么是 Release(发行版)
将 PHP 项目自动发布到 packagist.org
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册