CMakeLists.txt 5.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

16 17 18 19
cc_library(
  paddle_inference_io
  SRCS io.cc
  DEPS paddle_framework ${GLOB_OP_LIB} ${GLOB_OPERATOR_DEPS})
20

Y
Yiqun Liu 已提交
21 22 23 24
# analysis and tensorrt must be added before creating static library,
# otherwise, there would be undefined reference to them in static library.
add_subdirectory(analysis)
add_subdirectory(utils)
25
if(TENSORRT_FOUND)
Y
Yiqun Liu 已提交
26 27
  add_subdirectory(tensorrt)
endif()
28

29
if(WITH_LITE)
石晓伟 已提交
30 31 32
  add_subdirectory(lite)
endif()

33
# fluid_modules exclude API-interface of inference/api and inference/capi_exp
34
get_property(fluid_modules GLOBAL PROPERTY FLUID_MODULES)
35
get_property(phi_modules GLOBAL PROPERTY PHI_MODULES)
36
get_property(ir_targets GLOBAL PROPERTY IR_TARGETS)
37
get_property(not_infer_modules GLOBAL PROPERTY NOT_INFER_MODULES)
Y
Yuanle Liu 已提交
38
set(utils_modules pretty_log string_helper benchmark utf8proc)
39

40
add_subdirectory(api)
41 42 43

# Create static inference library if needed
# All static libs in inference/api
44 45 46 47 48 49 50 51
set(STATIC_INFERENCE_API
    paddle_inference_api
    analysis_predictor
    zero_copy_tensor
    reset_tensor_array
    analysis_config
    paddle_pass_builder
    ${mkldnn_quantizer_cfg})
52

53 54 55 56 57 58 59 60
set(OP_LIST
    ""
    CACHE STRING "The list of operators that will be compiled")

set(KERNEL_LIST
    ""
    CACHE STRING "The list of phi kernels that will be compiled")

61 62
# shared inference library deps
list(REMOVE_DUPLICATES fluid_modules)
63
#windows GPU static library over the limit, so not create_static_lib, and cc_library is dummy
W
Wilber 已提交
64
if(WIN32 AND WITH_GPU)
65 66
  cc_library(paddle_inference DEPS ${fluid_modules} ${STATIC_INFERENCE_API}
                                   ${utils_modules})
W
Wilber 已提交
67
else()
68 69
  if(WIN32)
    create_static_lib(paddle_inference ${phi_modules} ${fluid_modules}
70
                      ${ir_targets} ${STATIC_INFERENCE_API} ${utils_modules})
71 72 73 74
  else()
    create_static_lib(paddle_inference ${phi_modules} ${fluid_modules}
                      ${ir_targets} ${STATIC_INFERENCE_API} ${utils_modules})
  endif()
W
Wilber 已提交
75
endif()
76

77
if(NOT APPLE)
78
  # TODO(liuyiqu: Temporarily disable the link flag because it is not support on Mac.
79 80 81
  set(LINK_FLAGS
      "-Wl,--retain-symbols-file ${CMAKE_CURRENT_SOURCE_DIR}/paddle_inference.sym"
  )
82
  set_target_properties(paddle_inference PROPERTIES LINK_FLAGS "${LINK_FLAGS}")
83 84
endif()
# C inference API
85
add_subdirectory(capi_exp)
86

N
nhzlx 已提交
87
set(SHARED_INFERENCE_SRCS
88 89 90 91
    io.cc
    ${CMAKE_CURRENT_SOURCE_DIR}/../framework/data_feed.cc
    ${CMAKE_CURRENT_SOURCE_DIR}/../framework/data_feed_factory.cc
    ${CMAKE_CURRENT_SOURCE_DIR}/../framework/dataset_factory.cc
Y
YuanRisheng 已提交
92
    ${CMAKE_CURRENT_SOURCE_DIR}/../platform/init_phi.cc
93 94
    ${CMAKE_CURRENT_SOURCE_DIR}/api/api.cc
    ${CMAKE_CURRENT_SOURCE_DIR}/api/api_impl.cc
N
nhzlx 已提交
95
    ${CMAKE_CURRENT_SOURCE_DIR}/api/analysis_predictor.cc
96
    ${CMAKE_CURRENT_SOURCE_DIR}/api/paddle_infer_contrib.cc
97
    ${CMAKE_CURRENT_SOURCE_DIR}/api/details/zero_copy_tensor.cc
Y
Yuanle Liu 已提交
98
    ${CMAKE_CURRENT_SOURCE_DIR}/utils/io_utils.cc)
N
nhzlx 已提交
99

100 101 102 103 104 105 106 107 108 109 110
# NOTE(Aurelius84): For inference library, some DEPS is usless
# such as non-infer operator related targets et.al.
list(REMOVE_ITEM fluid_modules cinn_dialect)
# NOTE(Aurelisu84): Remove ir dialect related target DEPS for inference
# shared library to prune library size.
list(REMOVE_ITEM fluid_modules ${not_infer_modules})

set(SHARED_INFERENCE_DEPS phi ${fluid_modules} analysis_predictor
                          ${utils_modules})
if(NOT WIN32)
  list(APPEND SHARED_INFERENCE_DEPS ${ir_targets})
111
endif()
112

113 114
if(WITH_CRYPTO)
  set(SHARED_INFERENCE_DEPS ${SHARED_INFERENCE_DEPS} paddle_crypto)
W
Wilber 已提交
115
endif()
116

117
if(WITH_PSCORE)
L
lxsbupt 已提交
118
  set(SHARED_INFERENCE_DEPS ${SHARED_INFERENCE_DEPS} fleet ps_service)
119
endif()
120

121 122 123 124
if(WITH_ONNXRUNTIME)
  set(SHARED_INFERENCE_SRCS
      ${SHARED_INFERENCE_SRCS}
      ${CMAKE_CURRENT_SOURCE_DIR}/api/onnxruntime_predictor.cc)
W
Wilber 已提交
125
endif()
126

127
# Create shared inference library
128 129 130 131
cc_library(
  paddle_inference_shared SHARED
  SRCS ${SHARED_INFERENCE_SRCS}
  DEPS ${SHARED_INFERENCE_DEPS})
132

133
get_property(os_dependency_modules GLOBAL PROPERTY OS_DEPENDENCY_MODULES)
134
target_link_libraries(paddle_inference_shared ${os_dependency_modules})
135
if(WIN32)
136 137
  set_property(TARGET paddle_inference_shared
               PROPERTY WINDOWS_EXPORT_ALL_SYMBOLS ON)
138
  target_link_libraries(paddle_inference_shared phi)
139
endif()
Y
Yan Chunwei 已提交
140

141 142
set_target_properties(paddle_inference_shared PROPERTIES OUTPUT_NAME
                                                         paddle_inference)
143 144 145 146
if(NOT APPLE
   AND NOT WIN32
   AND NOT WITH_TESTING
   AND NOT WITH_INFERENCE_API_TEST)
Y
Update  
Yi Wang 已提交
147
  # TODO(liuyiqun): Temporarily disable the link flag because it is not support on Mac.
148 149
  set(LINK_FLAGS
      "-Wl,--version-script ${CMAKE_CURRENT_SOURCE_DIR}/paddle_inference.map")
zhenhailiu's avatar
zhenhailiu 已提交
150

151 152
  set_target_properties(paddle_inference_shared PROPERTIES LINK_FLAGS
                                                           "${LINK_FLAGS}")
153
  # check symbol hidden
154 155
  file(
    WRITE ${CMAKE_CURRENT_BINARY_DIR}/check_symbol.cmake
chen.zhiyu's avatar
chen.zhiyu 已提交
156
    "execute_process(COMMAND sh -c \"${CMAKE_CURRENT_SOURCE_DIR}/check_symbol.sh"
157
    " ${CMAKE_CURRENT_BINARY_DIR}/libpaddle_inference.so\" RESULT_VARIABLE symbol_res)\n"
158 159 160 161 162 163
    "if(NOT \"\${symbol_res}\" STREQUAL \"0\")\n"
    "  message(FATAL_ERROR \"Check symbol failed.\")\n"
    "endif()\n")
  add_custom_command(
    OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/.check_symbol"
    COMMAND ${CMAKE_COMMAND} -P "${CMAKE_CURRENT_BINARY_DIR}/check_symbol.cmake"
164
    DEPENDS paddle_inference_shared)
165 166
  add_custom_target(check_symbol ALL
                    DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/.check_symbol")
Y
Update  
Yi Wang 已提交
167
endif()