From 94cd8e208f361ad7e46a0b0bb140e41d6fcddf63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E6=B6=9B?= Date: Wed, 21 Sep 2022 01:55:40 +0000 Subject: [PATCH 1/2] =?UTF-8?q?!674=20update=20owners=20Merge=20pull=20req?= =?UTF-8?q?uest=20!674=20from=20=E7=8E=8B=E6=B6=9B/r1.10.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- OWNERS | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/OWNERS b/OWNERS index 093181a..1b2ee64 100644 --- a/OWNERS +++ b/OWNERS @@ -1,9 +1,7 @@ approvers: -- ji_chen -- wqtshg +- startzgf168 +- andylhy - zhangfan_hq -- lipeiyang3699 -- wangxiaotian22 reviewers: - xchu42 - sheng-nan From 25b08e00a51341174d6a86a5b489aa8da5507dbb Mon Sep 17 00:00:00 2001 From: likun104 Date: Thu, 15 Sep 2022 15:18:48 +0800 Subject: [PATCH 2/2] remove all-in-one compatible directories --- parser/stub/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/parser/stub/README.md b/parser/stub/README.md index a085e53..fc47b12 100644 --- a/parser/stub/README.md +++ b/parser/stub/README.md @@ -16,7 +16,7 @@ Makefile: ''' -ATC_INCLUDE_DIR := $(ASCEND_PATH)/atc/include +ATC_INCLUDE_DIR := $(ASCEND_PATH)/compiler/include OPP_INCLUDE_DIR := $(ASCEND_PATH)/opp/op_proto/built-in/inc LOCAL_MODULE_NAME := ir_build CC := g++ @@ -26,7 +26,7 @@ INCLUDES := -I $(ASCEND_OPP_PATH)/op_proto/built-in/inc \ -I $(ATC_INCLUDE_DIR)/graph \ -I $(ATC_INCLUDE_DIR)/ge \ -LIBS := -L ${ASCEND_PATH}/atc/lib64/stub \ +LIBS := -L ${ASCEND_PATH}/compiler/lib64/stub \ -lgraph \ -lge_compiler ir_build: @@ -38,7 +38,7 @@ clean: ''' make -## Run the application after set the LD_LIBRARY_PATH to include the real path of the library which locates in the directory of atc/lib64 +## Run the application after set the LD_LIBRARY_PATH to include the real path of the library which locates in the directory of compiler/lib64 -export LD_LIBRARY_PATH= $(ASCEND_PATH)/atc/lib64 +export LD_LIBRARY_PATH= $(ASCEND_PATH)/compiler/lib64 - ./ ir_build