From 7f68fa7187f5db6648d870b32abca1cdf61a75dc Mon Sep 17 00:00:00 2001 From: ckey_Dou Date: Sun, 28 Sep 2025 10:51:41 +0800 Subject: [PATCH] fix README --- README.md | 14 +++++++------- README_EN.md | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index e8239c3..c53664c 100644 --- a/README.md +++ b/README.md @@ -79,23 +79,23 @@ ms_custom_ops/ ```bash # 查看编译选项 - bash build.sh -h + bash scripts/build.sh -h # 默认编译(Release模式) - bash build.sh + bash scripts/build.sh # Debug编译 - bash build.sh -d + bash scripts/build.sh -d # 编译指定算子 - bash build.sh -p ${absolute_op_dir_path} + bash scripts/build.sh -p ${absolute_op_dir_path} # 编译指定算子 - bash build.sh -p ${absolute_op_dir_path} - eg. bash build.sh -p /home/ms_custom_ops/ccsrc/ops/ascendc/add,/home/ms_custom_ops/ccsrc/ops/ascendc/add + bash scripts/build.sh -p ${absolute_op_dir_path} + eg. bash scripts/build.sh -p /home/ms_custom_ops/ccsrc/ops/ascendc/add,/home/ms_custom_ops/ccsrc/ops/ascendc/add # 指定SOC Verison编译 - eg. bash build.sh -v ascend910b4 + eg. bash scripts/build.sh -v ascend910b4 ``` 编译完成后,安装生成的wheel包: diff --git a/README_EN.md b/README_EN.md index 84d0ffe..8c25893 100644 --- a/README_EN.md +++ b/README_EN.md @@ -79,23 +79,23 @@ ms_custom_ops/ ```bash # View build options - bash build.sh -h + bash scripts/build.sh -h # Default build (Release mode) - bash build.sh + bash scripts/build.sh # Debug build - bash build.sh -d + bash scripts/build.sh -d # Build specified operators - bash build.sh -p ${absolute_op_dir_path} + bash scripts/build.sh -p ${absolute_op_dir_path} # Build specified operators - bash build.sh -p ${absolute_op_dir_path} - eg. bash build.sh -p /home/ms_custom_ops/ccsrc/ops/ascendc/add,/home/ms_custom_ops/ccsrc/ops/ascendc/add + bash scripts/build.sh -p ${absolute_op_dir_path} + eg. bash scripts/build.sh -p /home/ms_custom_ops/ccsrc/ops/ascendc/add,/home/ms_custom_ops/ccsrc/ops/ascendc/add # Build with specified SOC Version - eg. bash build.sh -v ascend910b4 + eg. bash scripts/build.sh -v ascend910b4 ``` After compilation, install the generated wheel package: -- Gitee