From 5c5d93d817422055534177c36eb1a3f8223639d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=94=90=E8=B1=AA=E6=9D=B0?= Date: Thu, 31 Oct 2024 11:14:30 +0800 Subject: [PATCH] modify readme --- cplusplus/level1_single_api/3_ir/IRBuild/Makefile | 2 +- cplusplus/level1_single_api/3_ir/IRBuild/readme.md | 4 ++-- cplusplus/level1_single_api/8_graphrun/graph_run/readme.md | 5 +---- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/cplusplus/level1_single_api/3_ir/IRBuild/Makefile b/cplusplus/level1_single_api/3_ir/IRBuild/Makefile index b127b21f4..8a544f2b1 100644 --- a/cplusplus/level1_single_api/3_ir/IRBuild/Makefile +++ b/cplusplus/level1_single_api/3_ir/IRBuild/Makefile @@ -1,5 +1,5 @@ ifeq (${ASCEND_INSTALL_PATH},) - ASCEND_PATH := /usr/local/Ascend + ASCEND_PATH := /usr/local/Ascend/latest else ASCEND_PATH := ${ASCEND_INSTALL_PATH} endif diff --git a/cplusplus/level1_single_api/3_ir/IRBuild/readme.md b/cplusplus/level1_single_api/3_ir/IRBuild/readme.md index 0e5cfa1c7..fbdb4a9a1 100644 --- a/cplusplus/level1_single_api/3_ir/IRBuild/readme.md +++ b/cplusplus/level1_single_api/3_ir/IRBuild/readme.md @@ -26,9 +26,9 @@ ## 环境要求 -- 操作系统及架构:CentOS x86系统、CentOS aarch64系统、Euleros x86系统、Euleros aarch64系统 +- 操作系统及架构:CentOS系统、Euleros系统、Ubuntu系统 - 编译器:g++ -- 芯片:all +- 芯片:Atlas 训练系列产品、Atlas 推理系列产品(配置Ascend 310P AI处理器) - python及依赖的库:python3.7.5 - 已完成昇腾AI软件栈在开发环境上的部署 - 如果采用模型解析方式构图,请在当前环境安装tensorflow1.15.0和caffe diff --git a/cplusplus/level1_single_api/8_graphrun/graph_run/readme.md b/cplusplus/level1_single_api/8_graphrun/graph_run/readme.md index 9adf3d0a4..e1b8c4b4c 100644 --- a/cplusplus/level1_single_api/8_graphrun/graph_run/readme.md +++ b/cplusplus/level1_single_api/8_graphrun/graph_run/readme.md @@ -16,7 +16,6 @@ ├── src //源码文件 │ ├──main.cpp // main函数 │ ├──graph_utils.cpp // graph公共基础接口 - │ ├──graph_utils.h // graph公共基础接口头文件 ├── Makefile //编译脚本 ├── data @@ -28,7 +27,7 @@ ## 环境要求 -- 操作系统及架构:Euleros x86系统、Euleros aarch64系统 +- 操作系统及架构:CentOS系统、Euleros系统、Ubuntu系统 - 编译器:g++ - 芯片:Atlas 训练系列产品、Atlas 推理系列产品(配置Ascend 310P AI处理器) - python及依赖的库:python3.7.5 @@ -94,8 +93,6 @@ Session run convolution graph success. ``` - 在out目录下生成图中算子的kernel_meta文件夹。 - 如果用户先保存变量的值,可利用checkpoint子图把数据保存到指定路径。 每张图的计算结果保存在RunGraph出参Tensor里,供用户使用。 -- Gitee