|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- cmake_minimum_required(VERSION 3.14)
- project (Parser[CXX])
-
- include(CMakePrintHelpers)
- message(STATUS "Variables in parser project :")
- cmake_print_variables(ASCEND_OPENSDK_DIR)
- cmake_print_variables(CMAKE_BUILD_TYPE)
- cmake_print_variables(CMAKE_INSTALL_PREFIX)
- cmake_print_variables(CMAKE_PREFIX_PATH)
- cmake_print_variables(CMAKE_MODULE_PATH)
- cmake_print_variables(protoc_ROOT)
- cmake_print_variables(protobuf_grpc_ROOT)
- cmake_print_variables(protobuf_static_ROOT)
- cmake_print_variables(ascend_protobuf_shared_ROOT)
- cmake_print_variables(ascend_protobuf_static_ROOT)
- cmake_print_variables(ENABLE_OPEN_SRC ENABLE_GITEE ENABLE_PARSER_UT ENABLE_PARSER_ST ENABLE_PARSER_COV)
- cmake_print_variables(BUILD_WITHOUT_AIR BUILD_METADEF METADEF_DIR)
-
- set(INSTALL_BASE_DIR "")
- set(INSTALL_LIBRARY_DIR lib)
- set(INSTALL_RUNTIME_DIR bin)
- set(INSTALL_INCLUDE_DIR include)
- set(INSTALL_CONFIG_DIR cmake)
- include(CMakePackageConfigHelpers)
-
- set(PARSER_DIR ${CMAKE_CURRENT_LIST_DIR})
- option(ENABLE_OPEN_SRC "Enable graphengine compile in opensource." FALSE)
-
- if (ENABLE_OPEN_SRC)
- set(HI_PYTHON python3)
-
- # 开源软件包
- find_package(json MODULE)
- find_package(protoc MODULE)
- find_package(ascend_protobuf_shared MODULE)
- find_package(ascend_protobuf_static MODULE)
- find_package(GTest CONFIG REQUIRED)
-
- # 自研软件包
- find_package(securec MODULE REQUIRED)
- find_package(slog CONFIG REQUIRED)
- find_package(mmpa CONFIG REQUIRED)
- find_package(runtime CONFIG REQUIRED)
- find_package(msprof CONFIG REQUIRED)
- find_package(cce CONFIG REQUIRED)
- if (BUILD_WITHOUT_AIR)
- find_package(air CONFIG REQUIRED)
- endif()
- if (NOT BUILD_METADEF)
- find_package(metadef CONFIG REQUIRED)
- endif()
-
- if (BUILD_METADEF)
- # 使用medadef源码编译
- if (BUILD_WITHOUT_AIR)
- # parser集成metadef源码
- set(METADEF_DIR ${CMAKE_CURRENT_LIST_DIR}/metadef)
- else ()
- # air已经集成metadef源码,parser直接使用
- message(STATUS "METADEF_DIR = ${METADEF_DIR}")
- endif()
- else ()
- # 使用medadef发布包编译
- set(METADEF_DIR ${ASCEND_OPENSDK_DIR})
- endif()
-
- include(cmake/intf_pub_linux.cmake)
- include(cmake/function.cmake)
- else()
- # 使用全量源码构建框架集成的metadef源码
- set(METADEF_DIR ${TOP_DIR}/metadef)
- endif()
-
- set(PARSER_PROTO_LIST
- "${METADEF_DIR}/proto/onnx/ge_onnx.proto"
- "${METADEF_DIR}/proto/om.proto"
- "${METADEF_DIR}/proto/caffe/caffe.proto"
- "${METADEF_DIR}/proto/tensorflow/graph_library.proto"
- "${METADEF_DIR}/proto/tensorflow/graph.proto"
- "${METADEF_DIR}/proto/tensorflow/node_def.proto"
- "${METADEF_DIR}/proto/tensorflow/function.proto"
- "${METADEF_DIR}/proto/tensorflow/versions.proto"
- "${METADEF_DIR}/proto/tensorflow/attr_value.proto"
- "${METADEF_DIR}/proto/tensorflow/op_def.proto"
- "${METADEF_DIR}/proto/tensorflow/tensor.proto"
- "${METADEF_DIR}/proto/tensorflow/tensor_shape.proto"
- "${METADEF_DIR}/proto/tensorflow/types.proto"
- "${METADEF_DIR}/proto/tensorflow/resource_handle.proto"
- )
-
- protobuf_generate(parser_protos PARSER_PROTO_SRCS PARSER_PROTO_HDRS ${PARSER_PROTO_LIST} TARGET)
-
- add_library(parser_headers INTERFACE)
- target_include_directories(parser_headers INTERFACE
- $<BUILD_INTERFACE:${PARSER_DIR}/inc>
- $<BUILD_INTERFACE:${PARSER_DIR}/inc/external>
- $<BUILD_INTERFACE:${PARSER_DIR}/inc/external/parser>
- $<INSTALL_INTERFACE:include>
- $<INSTALL_INTERFACE:include/parser>
- $<INSTALL_INTERFACE:include/parser/external>
- $<INSTALL_INTERFACE:include/parser/external/parser>
- )
-
- set(PARSER_GRAPH_LIBRARY_PROTO_SRC
- "${CMAKE_BINARY_DIR}/proto/parser_protos/proto/tensorflow/graph_library.pb.cc"
- )
-
- set(PARSER_TENSORFLOW_PROTO_SRCS
- "${CMAKE_BINARY_DIR}/proto/parser_protos/proto/tensorflow/graph.pb.cc"
- "${CMAKE_BINARY_DIR}/proto/parser_protos/proto/tensorflow/node_def.pb.cc"
- "${CMAKE_BINARY_DIR}/proto/parser_protos/proto/tensorflow/function.pb.cc"
- "${CMAKE_BINARY_DIR}/proto/parser_protos/proto/tensorflow/versions.pb.cc"
- "${CMAKE_BINARY_DIR}/proto/parser_protos/proto/tensorflow/attr_value.pb.cc"
- "${CMAKE_BINARY_DIR}/proto/parser_protos/proto/tensorflow/op_def.pb.cc"
- "${CMAKE_BINARY_DIR}/proto/parser_protos/proto/tensorflow/tensor.pb.cc"
- "${CMAKE_BINARY_DIR}/proto/parser_protos/proto/tensorflow/tensor_shape.pb.cc"
- "${CMAKE_BINARY_DIR}/proto/parser_protos/proto/tensorflow/types.pb.cc"
- "${CMAKE_BINARY_DIR}/proto/parser_protos/proto/tensorflow/resource_handle.pb.cc"
- )
-
- set(PARSER_ONNX_PROTO_SRCS
- "${CMAKE_BINARY_DIR}/proto/parser_protos/proto/onnx/ge_onnx.pb.cc"
- "${CMAKE_BINARY_DIR}/proto/parser_protos/proto/om.pb.cc"
- )
-
- set(PARSER_CAFFE_PROTO_SRC
- "${CMAKE_BINARY_DIR}/proto/parser_protos/proto/caffe/caffe.pb.cc"
- )
-
- add_library(parser_graph_library_proto_obj OBJECT ${PARSER_GRAPH_LIBRARY_PROTO_SRC})
- add_dependencies(parser_graph_library_proto_obj parser_protos)
- target_compile_definitions(parser_graph_library_proto_obj PRIVATE
- google=ascend_private
- )
- target_link_libraries(parser_graph_library_proto_obj PRIVATE ascend_protobuf intf_pub)
- target_compile_options(parser_graph_library_proto_obj PRIVATE
- $<$<STREQUAL:${TARGET_SYSTEM_NAME},Linux>:-O2 -fPIC -Wextra -Wfloat-equal>
- $<$<OR:$<STREQUAL:${PRODUCT_SIDE},host>,$<STREQUAL:${ENABLE_OPEN_SRC},True>>:-fexceptions>
- $<$<OR:$<STREQUAL:${TARGET_SYSTEM_NAME},Linux>,$<STREQUAL:${TARGET_SYSTEM_NAME},Android>>:-fno-common -Wextra -Wfloat-equal>
- $<$<AND:$<STREQUAL:${TARGET_SYSTEM_NAME},Windows>,$<STREQUAL:${CMAKE_CONFIGURATION_TYPES},Debug>>:/MTd>
- $<$<AND:$<STREQUAL:${TARGET_SYSTEM_NAME},Windows>,$<STREQUAL:${CMAKE_CONFIGURATION_TYPES},Release>>:/MT>
- )
-
-
- add_library(parser_tensorflow_protos_obj OBJECT ${PARSER_TENSORFLOW_PROTO_SRCS})
- add_dependencies(parser_tensorflow_protos_obj parser_protos)
- target_compile_definitions(parser_tensorflow_protos_obj PRIVATE
- google=ascend_private
- )
- target_link_libraries(parser_tensorflow_protos_obj PRIVATE ascend_protobuf intf_pub)
- target_compile_options(parser_tensorflow_protos_obj PRIVATE
- $<$<STREQUAL:${TARGET_SYSTEM_NAME},Linux>:-O2 -fPIC -Wextra -Wfloat-equal>
- $<$<OR:$<STREQUAL:${PRODUCT_SIDE},host>,$<STREQUAL:${ENABLE_OPEN_SRC},True>>:-fexceptions>
- $<$<OR:$<STREQUAL:${TARGET_SYSTEM_NAME},Linux>,$<STREQUAL:${TARGET_SYSTEM_NAME},Android>>:-fno-common -Wextra -Wfloat-equal>
- $<$<AND:$<STREQUAL:${TARGET_SYSTEM_NAME},Windows>,$<STREQUAL:${CMAKE_CONFIGURATION_TYPES},Debug>>:/MTd>
- $<$<AND:$<STREQUAL:${TARGET_SYSTEM_NAME},Windows>,$<STREQUAL:${CMAKE_CONFIGURATION_TYPES},Release>>:/MT>
- )
-
-
- add_library(parser_onnx_protos_obj OBJECT ${PARSER_ONNX_PROTO_SRCS})
- add_dependencies(parser_onnx_protos_obj parser_protos)
- target_compile_definitions(parser_onnx_protos_obj PRIVATE
- google=ascend_private
- )
- target_link_libraries(parser_onnx_protos_obj PRIVATE ascend_protobuf intf_pub)
- target_compile_options(parser_onnx_protos_obj PRIVATE
- $<$<STREQUAL:${TARGET_SYSTEM_NAME},Linux>:-O2 -fPIC -Wextra -Wfloat-equal>
- $<$<OR:$<STREQUAL:${PRODUCT_SIDE},host>,$<STREQUAL:${ENABLE_OPEN_SRC},True>>:-fexceptions>
- $<$<OR:$<STREQUAL:${TARGET_SYSTEM_NAME},Linux>,$<STREQUAL:${TARGET_SYSTEM_NAME},Android>>:-fno-common -Wextra -Wfloat-equal>
- $<$<AND:$<STREQUAL:${TARGET_SYSTEM_NAME},Windows>,$<STREQUAL:${CMAKE_CONFIGURATION_TYPES},Debug>>:/MTd>
- $<$<AND:$<STREQUAL:${TARGET_SYSTEM_NAME},Windows>,$<STREQUAL:${CMAKE_CONFIGURATION_TYPES},Release>>:/MT>
- )
-
-
- add_library(parser_caffe_proto_obj OBJECT ${PARSER_CAFFE_PROTO_SRC})
- add_dependencies(parser_caffe_proto_obj parser_protos)
- target_compile_definitions(parser_caffe_proto_obj PRIVATE
- google=ascend_private
- )
- target_link_libraries(parser_caffe_proto_obj PRIVATE ascend_protobuf intf_pub)
- target_compile_options(parser_caffe_proto_obj PRIVATE
- $<$<STREQUAL:${TARGET_SYSTEM_NAME},Linux>:-O2 -fPIC -Wextra -Wfloat-equal>
- $<$<OR:$<STREQUAL:${PRODUCT_SIDE},host>,$<STREQUAL:${ENABLE_OPEN_SRC},True>>:-fexceptions>
- $<$<OR:$<STREQUAL:${TARGET_SYSTEM_NAME},Linux>,$<STREQUAL:${TARGET_SYSTEM_NAME},Android>>:-fno-common -Wextra -Wfloat-equal>
- $<$<AND:$<STREQUAL:${TARGET_SYSTEM_NAME},Windows>,$<STREQUAL:${CMAKE_CONFIGURATION_TYPES},Debug>>:/MTd>
- $<$<AND:$<STREQUAL:${TARGET_SYSTEM_NAME},Windows>,$<STREQUAL:${CMAKE_CONFIGURATION_TYPES},Release>>:/MT>
- )
-
- ############ lib_caffe_parser.so ############
- add_library(_caffe_parser SHARED
- $<TARGET_OBJECTS:parser_caffe_proto_obj>
- )
-
- target_compile_definitions(_caffe_parser PRIVATE
- google=ascend_private
- )
-
- target_include_directories(_caffe_parser PRIVATE
- ${CMAKE_CURRENT_LIST_DIR}
- )
-
- target_link_options(_caffe_parser PRIVATE
- -Wl,-Bsymbolic
- )
-
- target_link_libraries(_caffe_parser
- PRIVATE
- intf_pub
- -Wl,--no-as-needed
- ascend_protobuf
- -Wl,--as-needed
- PUBLIC
- parser_headers
- )
-
- add_subdirectory(parser)
- add_subdirectory(parser/common)
- add_subdirectory(parser/func_to_graph)
- add_subdirectory(parser/onnx)
- if (BUILD_METADEF AND BUILD_WITHOUT_AIR)
- add_subdirectory(metadef)
- endif()
- if(ENABLE_PARSER_UT OR ENABLE_PARSER_COV OR ENABLE_PARSER_ST)
- add_subdirectory(tests)
- endif()
-
- install(TARGETS _caffe_parser parser_common fmk_onnx_parser fmk_parser parser_headers
- EXPORT parser-targets
- LIBRARY DESTINATION ${INSTALL_LIBRARY_DIR} OPTIONAL COMPONENT opensdk
- ARCHIVE DESTINATION ${INSTALL_LIBRARY_DIR} OPTIONAL COMPONENT opensdk
- RUNTIME DESTINATION ${INSTALL_RUNTIME_DIR} OPTIONAL COMPONENT opensdk
- )
- install(FILES ${PARSER_DIR}/inc/external/parser/onnx_parser.h
- ${PARSER_DIR}/inc/external/parser/caffe_parser.h
- ${PARSER_DIR}/inc/external/parser/tensorflow_parser.h
- DESTINATION ${INSTALL_INCLUDE_DIR}/parser/external/parser COMPONENT opensdk EXCLUDE_FROM_ALL
- )
- # 下列头文件发布是非法的,需要在后续整改中删掉
- # --------------------start------------------------
- install(FILES ${PARSER_DIR}/parser/common/pre_checker.h
- DESTINATION ${INSTALL_INCLUDE_DIR}/parser/parser/common COMPONENT opensdk EXCLUDE_FROM_ALL
- )
- install(FILES ${PARSER_DIR}/parser/common/convert/pb2json.h
- DESTINATION ${INSTALL_INCLUDE_DIR}/parser/parser/common/convert COMPONENT opensdk EXCLUDE_FROM_ALL
- )
- # ---------------------end-------------------------
- if (PACKAGE STREQUAL "opensdk")
- install(EXPORT parser-targets DESTINATION ${INSTALL_CONFIG_DIR}
- FILE parser-targets.cmake COMPONENT opensdk EXCLUDE_FROM_ALL
- )
- set(PKG_NAME parser)
- configure_package_config_file(${TOP_DIR}/cmake/config/pkg_config_template.cmake.in
- ${CMAKE_CURRENT_BINARY_DIR}/parser-config.cmake
- INSTALL_DESTINATION ${INSTALL_CONFIG_DIR}
- PATH_VARS INSTALL_BASE_DIR INSTALL_INCLUDE_DIR INSTALL_LIBRARY_DIR INSTALL_RUNTIME_DIR INSTALL_CONFIG_DIR
- INSTALL_PREFIX ${CMAKE_INSTALL_PREFIX}
- )
- unset(PKG_NAME)
- install(FILES ${CMAKE_CURRENT_BINARY_DIR}/parser-config.cmake
- DESTINATION ${INSTALL_CONFIG_DIR} COMPONENT opensdk EXCLUDE_FROM_ALL
- )
- endif()
|