CMakeLists.txt 5.3 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
if(WITH_TESTING)
T
tianshuo78520a 已提交
17
  include(tests/test.cmake) # some generic cmake function for inference
18
endif()
19

20 21 22 23
cc_library(
  paddle_inference_io
  SRCS io.cc
  DEPS paddle_framework ${GLOB_OP_LIB} ${GLOB_OPERATOR_DEPS})
24

Y
Yiqun Liu 已提交
25 26 27 28
# 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)
29
if(TENSORRT_FOUND)
Y
Yiqun Liu 已提交
30 31
  add_subdirectory(tensorrt)
endif()
32

33
if(WITH_LITE)
石晓伟 已提交
34 35 36
  add_subdirectory(lite)
endif()

37
# fluid_modules exclude API-interface of inference/api and inference/capi_exp
38
get_property(fluid_modules GLOBAL PROPERTY FLUID_MODULES)
39
get_property(phi_modules GLOBAL PROPERTY PHI_MODULES)
40
get_property(phi_kernels GLOBAL PROPERTY PHI_KERNELS)
41
set(utils_modules stringpiece pretty_log string_helper benchmark)
42

43
add_subdirectory(api)
44 45 46

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

57
#windows GPU static library over the limit, so not create_static_lib, and cc_library is dummy
W
Wilber 已提交
58
if(WIN32 AND WITH_GPU)
59 60
  cc_library(paddle_inference DEPS ${fluid_modules} phi ${STATIC_INFERENCE_API}
                                   ${utils_modules})
W
Wilber 已提交
61
else()
62
  create_static_lib(paddle_inference ${fluid_modules} ${phi_modules}
63
                    ${phi_kernels} ${STATIC_INFERENCE_API} ${utils_modules})
W
Wilber 已提交
64
endif()
65

66
if(NOT APPLE)
67
  # TODO(liuyiqu: Temporarily disable the link flag because it is not support on Mac.
68 69 70
  set(LINK_FLAGS
      "-Wl,--retain-symbols-file ${CMAKE_CURRENT_SOURCE_DIR}/paddle_inference.sym"
  )
71
  set_target_properties(paddle_inference PROPERTIES LINK_FLAGS "${LINK_FLAGS}")
72 73 74
endif()

# C inference API
75
add_subdirectory(capi_exp)
76

77
if(WITH_TESTING AND WITH_INFERENCE_API_TEST)
78
  add_subdirectory(tests/api)
79 80
endif()

N
nhzlx 已提交
81
set(SHARED_INFERENCE_SRCS
82 83 84 85 86 87
    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
    ${CMAKE_CURRENT_SOURCE_DIR}/api/api.cc
    ${CMAKE_CURRENT_SOURCE_DIR}/api/api_impl.cc
N
nhzlx 已提交
88
    ${CMAKE_CURRENT_SOURCE_DIR}/api/analysis_predictor.cc
89
    ${CMAKE_CURRENT_SOURCE_DIR}/api/paddle_infer_contrib.cc
90
    ${CMAKE_CURRENT_SOURCE_DIR}/api/details/zero_copy_tensor.cc
91
    ${CMAKE_CURRENT_SOURCE_DIR}/utils/io_utils.cc
92
    ${PADDLE_CUSTOM_OP_SRCS})
N
nhzlx 已提交
93

94
# shared inference library deps
95 96
set(SHARED_INFERENCE_DEPS ${fluid_modules} phi analysis_predictor
                          ${utils_modules})
97

98 99
if(WITH_CRYPTO)
  set(SHARED_INFERENCE_DEPS ${SHARED_INFERENCE_DEPS} paddle_crypto)
W
Wilber 已提交
100
endif()
101

102 103 104 105
if(WITH_PSCORE)
  set(SHARED_INFERENCE_DEPS ${SHARED_INFERENCE_DEPS} fleet ps_service
                            tensor_table)
endif()
106

107 108 109 110
if(WITH_ONNXRUNTIME)
  set(SHARED_INFERENCE_SRCS
      ${SHARED_INFERENCE_SRCS}
      ${CMAKE_CURRENT_SOURCE_DIR}/api/onnxruntime_predictor.cc)
W
Wilber 已提交
111
endif()
112

113
# Create shared inference library
114 115 116 117
cc_library(
  paddle_inference_shared SHARED
  SRCS ${SHARED_INFERENCE_SRCS}
  DEPS ${SHARED_INFERENCE_DEPS})
118

119
get_property(os_dependency_modules GLOBAL PROPERTY OS_DEPENDENCY_MODULES)
120
target_link_libraries(paddle_inference_shared ${os_dependency_modules})
121
if(WIN32)
122
  target_link_libraries(paddle_inference_shared gflags)
123
endif()
Y
Yan Chunwei 已提交
124

125 126
set_target_properties(paddle_inference_shared PROPERTIES OUTPUT_NAME
                                                         paddle_inference)
P
peizhilin 已提交
127
if(NOT APPLE AND NOT WIN32)
Y
Update  
Yi Wang 已提交
128
  # TODO(liuyiqun): Temporarily disable the link flag because it is not support on Mac.
129 130 131 132
  if(WITH_CUSTOM_DEVICE)
    set(LINK_FLAGS
        "-Wl,--version-script ${CMAKE_CURRENT_SOURCE_DIR}/paddle_inference_custom_device.map"
    )
133
  else()
134 135
    set(LINK_FLAGS
        "-Wl,--version-script ${CMAKE_CURRENT_SOURCE_DIR}/paddle_inference.map")
136
  endif()
137 138
  set_target_properties(paddle_inference_shared PROPERTIES LINK_FLAGS
                                                           "${LINK_FLAGS}")
139
  # check symbol hidden
140 141
  file(
    WRITE ${CMAKE_CURRENT_BINARY_DIR}/check_symbol.cmake
chen.zhiyu's avatar
chen.zhiyu 已提交
142
    "execute_process(COMMAND sh -c \"${CMAKE_CURRENT_SOURCE_DIR}/check_symbol.sh"
143
    " ${CMAKE_CURRENT_BINARY_DIR}/libpaddle_inference.so\" RESULT_VARIABLE symbol_res)\n"
144 145 146 147 148 149
    "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"
150
    DEPENDS paddle_inference_shared)
151 152
  add_custom_target(check_symbol ALL
                    DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/.check_symbol")
Y
Update  
Yi Wang 已提交
153
endif()