!306 Feature:Support open ir interface in fwkacllib package

From: @lixiwen1
Reviewed-by: @wqtshg,@xchu42
Signed-off-by: @ji_chen
pull/306/MERGE
mindspore-ci-bot 5 years ago committed by Gitee
commit 3ef0951532

@ -329,6 +329,8 @@ set(TRAIN_SRC_LIST
"client/ge_api.cc"
"client/ge_prof.cc"
"analyzer/analyzer.cc"
"ir_build/ge_ir_build.cc"
"ir_build/atc_ir_common.cc"
)
add_library(ge_runner SHARED ${TRAIN_SRC_LIST} ${PROTO_SRCS} ${PROTO_CLIENT_SRCS})
@ -845,6 +847,7 @@ target_include_directories(atc_stub_ge_compiler PRIVATE
add_library(fwk_stub_ge_runner SHARED
stub_ge_api.cc
stub_ge_prof.cc
stub_ge_ir_build.cc
)
add_dependencies(fwk_stub_ge_runner ge_stub)

@ -300,6 +300,8 @@ LIBGE_LOCAL_SRC_FILES := \
hybrid/hybrid_davinci_model.cc \
executor/ge_executor.cc \
analyzer/analyzer.cc \
ir_build/ge_ir_build.cc \
ir_build/atc_ir_common.cc \
LIBCLIENT_LOCAL_SRC_FILES := \
proto/ge_api.proto \
@ -314,6 +316,7 @@ RUNNER_LOCAL_C_INCLUDES := \
$(TOPDIR)inc/common \
$(TOPDIR)inc/external \
$(TOPDIR)inc/external/graph \
$(TOPDIR)inc/external/ge \
$(TOPDIR)inc/framework \
$(TOPDIR)inc/framework/common \
$(TOPDIR)inc/graph \
@ -403,6 +406,7 @@ LOCAL_C_INCLUDES := $(RUNNER_LOCAL_C_INCLUDES)
LOCAL_SRC_FILES := ../../out/ge/lib64/stub/ge_api.cc \
../../out/ge/lib64/stub/ge_prof.cc \
../../out/ge/lib64/stub/ge_ir_build.cc \
LOCAL_SHARED_LIBRARIES :=

Loading…
Cancel
Save