From f8b979c21ba351c5152260c8797ffc313092051a Mon Sep 17 00:00:00 2001 From: zhangjian <1032674385@qq.com> Date: Tue, 2 Jul 2024 15:12:46 +0800 Subject: [PATCH 1/2] update readme discription --- sample/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sample/README.md b/sample/README.md index 1bc2a76161..8e555f4870 100644 --- a/sample/README.md +++ b/sample/README.md @@ -109,7 +109,7 @@ mssanitizer ./*.fatbin # 默认进行memcheck检查 ``` 2. 添加运行时依赖库路径 ``` - # SOC_VERSION 使用npu-smi info查询NPU Name,如:名字为910A,则填入:Ascend910A + # SOC_VERSION为NPU名称,可通过npu-smi info命令进行查询。 export LD_LIBRARY_PATH=${ASCEND_HOME_PATH}/tools/simulator/${SOC_VERSION}/lib/:$LD_LIBRARY_PATH ``` 3. 使用算子调优工具进行仿真调优,获取仿真性能数据,`--output`参数省略,使用默认值`./` -- Gitee From 6ca88dd4b32dc01aef660cd3ea40dba1c2d1e819 Mon Sep 17 00:00:00 2001 From: zhangjian <1032674385@qq.com> Date: Thu, 4 Jul 2024 10:41:59 +0800 Subject: [PATCH 2/2] remove real in support_warp_ops.yaml because real is attribute not method. --- .../atat/pytorch/hook_module/support_wrap_ops.yaml | 1 - .../src/python/ptdbg_ascend/hook_module/support_wrap_ops.yaml | 1 - 2 files changed, 2 deletions(-) diff --git a/debug/accuracy_tools/atat/pytorch/hook_module/support_wrap_ops.yaml b/debug/accuracy_tools/atat/pytorch/hook_module/support_wrap_ops.yaml index 8bab7cd769..d64c577ff3 100644 --- a/debug/accuracy_tools/atat/pytorch/hook_module/support_wrap_ops.yaml +++ b/debug/accuracy_tools/atat/pytorch/hook_module/support_wrap_ops.yaml @@ -464,7 +464,6 @@ tensor: - rad2deg - rad2deg_ - ravel - - real - reciprocal - reciprocal_ - relu diff --git a/debug/accuracy_tools/ptdbg_ascend/src/python/ptdbg_ascend/hook_module/support_wrap_ops.yaml b/debug/accuracy_tools/ptdbg_ascend/src/python/ptdbg_ascend/hook_module/support_wrap_ops.yaml index 5f0b2b3c79..1163e6d0e3 100644 --- a/debug/accuracy_tools/ptdbg_ascend/src/python/ptdbg_ascend/hook_module/support_wrap_ops.yaml +++ b/debug/accuracy_tools/ptdbg_ascend/src/python/ptdbg_ascend/hook_module/support_wrap_ops.yaml @@ -464,7 +464,6 @@ tensor: - rad2deg - rad2deg_ - ravel - - real - reciprocal - reciprocal_ - relu -- Gitee