CMakeLists.txt 8.7 KB
Newer Older
1 2 3
# Adapt to custom op mechanism: Include the header files related to the data type
# to avoid exposing the path of the underlying file
include_directories(${PADDLE_SOURCE_DIR}/paddle/fluid/platform)
4
include_directories(${PADDLE_SOURCE_DIR}/paddle/utils)
5

6
set(PYBIND_DEPS pybind python proto_desc memory executor fleet_wrapper box_wrapper prune
7
  feed_fetch_method pass generate_pass pass_builder parallel_executor profiler layer tracer engine scope_pool
8
  analysis_predictor imperative_profiler imperative_flag save_load_util dlpack_tensor device_context
H
Huihuang Zheng 已提交
9
  gloo_wrapper infer_io_utils heter_wrapper generator op_version_registry ps_gpu_wrapper custom_operator
L
LiYuRio 已提交
10
  cost_model cuda_graph_with_memory_pool fleet_executor)
11

S
seemingwang 已提交
12 13 14 15
if (WITH_PSCORE)
  set(PYBIND_DEPS ${PYBIND_DEPS} ps_service)
  set(PYBIND_DEPS ${PYBIND_DEPS} graph_py_service)
endif()
16
if (WITH_GPU OR WITH_ROCM)
17
  set(PYBIND_DEPS ${PYBIND_DEPS} dynload_cuda)
18
  set(PYBIND_DEPS ${PYBIND_DEPS} cuda_device_guard)
19 20
endif()

21 22 23 24
if (WITH_GPU)
  set(PYBIND_DEPS ${PYBIND_DEPS} cuda_profiler)
endif()

25
if (WITH_NCCL OR WITH_RCCL)
26
  set(PYBIND_DEPS ${PYBIND_DEPS} nccl_wrapper)
27
  set(PYBIND_DEPS ${PYBIND_DEPS} reducer)
28 29
endif()

30 31 32 33 34
if (WITH_XPU_BKCL)
  set(PYBIND_DEPS ${PYBIND_DEPS} reducer)
  set(PYBIND_DEPS ${PYBIND_DEPS} bkcl_context)
endif()

35
if(NOT WIN32)
36
  set(PYBIND_DEPS ${PYBIND_DEPS} data_loader)
37
  set(PYBIND_DEPS ${PYBIND_DEPS} mmap_allocator)
38
  if (WITH_NCCL OR WITH_RCCL)
39 40
    set(PYBIND_DEPS ${PYBIND_DEPS} nccl_context)
  endif()
41
endif(NOT WIN32)
F
flame 已提交
42

S
sneaxiy 已提交
43 44
if(WITH_PYTHON)
  list(APPEND PYBIND_DEPS py_func_op)
45
  list(APPEND PYBIND_DEPS py_layer_op)
S
sneaxiy 已提交
46
endif()
47 48 49 50 51 52

set(PYBIND_SRCS
  pybind.cc
  exception.cc
  protobuf.cc
  const_value.cc
53
  global_value_getter_setter.cc
54 55
  reader_py.cc
  fleet_wrapper_py.cc
T
Thunderbrook 已提交
56
  heter_wrapper_py.cc
T
Thunderbrook 已提交
57
  ps_gpu_wrapper_py.cc
58
  gloo_wrapper_py.cc
H
hutuxian 已提交
59
  box_helper_py.cc
60 61 62
  data_set_py.cc
  imperative.cc
  ir.cc
H
Huihuang Zheng 已提交
63
  bind_cost_model.cc
L
LiYuRio 已提交
64
  bind_fleet_executor.cc
Y
yaoxuefeng 已提交
65
  inference_api.cc
66
  compatible.cc
67
  io.cc
68 69
  generator_py.cc
  cuda_streams_py.cc)
70

71
if(WITH_ASCEND)
72 73
  set(PYBIND_DEPS ${PYBIND_DEPS} ascend_wrapper)
  set(PYBIND_SRCS ${PYBIND_SRCS} ascend_wrapper_py.cc)
74
endif()
75

76 77 78
if(WITH_GLOO)
  set(PYBIND_DEPS ${PYBIND_DEPS} gloo_context)
  set(PYBIND_SRCS ${PYBIND_SRCS} gloo_context_py.cc)
79 80
  set(PYBIND_DEPS ${PYBIND_DEPS} imperative_gloo_context)
  set(PYBIND_DEPS ${PYBIND_DEPS} reducer)
81 82
endif(WITH_GLOO)

Y
Yanghello 已提交
83 84 85 86 87
if (WITH_CRYPTO)
  set(PYBIND_DEPS ${PYBIND_DEPS} paddle_crypto)
  set(PYBIND_SRCS ${PYBIND_SRCS} crypto.cc)
endif (WITH_CRYPTO)

T
Thunderbrook 已提交
88 89 90 91 92 93 94 95
if (WITH_PSLIB)
  set(DISTRIBUTE_COMPILE_FLAGS "-Wno-non-virtual-dtor -Wno-error=non-virtual-dtor -Wno-error=delete-non-virtual-dtor -Wno-error=sign-compare -Wno-error=unused-variable -Wno-error=return-type -Wno-error=unused-but-set-variable -Wno-error=type-limits -Wno-error=unknown-pragmas -Wno-error=parentheses -Wno-error=unused-result")
  if (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 7.0)
      set(DISTRIBUTE_COMPILE_FLAGS
              "${DISTRIBUTE_COMPILE_FLAGS} -faligned-new")
  endif()
  set_source_files_properties(heter_wrapper_py.cc PROPERTIES COMPILE_FLAGS ${DISTRIBUTE_COMPILE_FLAGS})
endif(WITH_PSLIB)
T
tangwei12 已提交
96
if (WITH_PSCORE)
T
tangwei12 已提交
97 98
  set(DISTRIBUTE_COMPILE_FLAGS "-Wno-non-virtual-dtor -Wno-error=non-virtual-dtor -Wno-error=delete-non-virtual-dtor -Wno-error=sign-compare -Wno-error=unused-variable -Wno-error=return-type -Wno-error=unused-but-set-variable -Wno-error=type-limits -Wno-error=unknown-pragmas -Wno-error=parentheses -Wno-error=unused-result")
  set_source_files_properties(fleet_py.cc PROPERTIES COMPILE_FLAGS ${DISTRIBUTE_COMPILE_FLAGS})
1
123malin 已提交
99
  list(APPEND PYBIND_DEPS fleet communicator index_wrapper index_sampler)
T
tangwei12 已提交
100
  list(APPEND PYBIND_SRCS fleet_py.cc)
101
endif()
102

103
if (WITH_NCCL OR WITH_RCCL)
104 105 106
  list(APPEND PYBIND_SRCS nccl_wrapper_py.cc)
endif()

L
Leo Chen 已提交
107 108
if(WITH_PYTHON)
  # generate op pybind functions automatically for dygraph.
109 110 111 112 113
  if (WITH_ASCEND_CL)
    set(OP_FUNCTION_GENERETOR_DEPS pybind proto_desc executor layer tracer engine imperative_profiler imperative_flag ascend_wrapper)
  else()
    set(OP_FUNCTION_GENERETOR_DEPS pybind proto_desc executor layer tracer engine imperative_profiler imperative_flag)
  endif()
L
Leo Chen 已提交
114 115 116
  list(APPEND OP_FUNCTION_GENERETOR_DEPS ${GLOB_OP_LIB})
  list(APPEND OP_FUNCTION_GENERETOR_DEPS ${GLOB_OPERATOR_DEPS})

117
  if (WITH_NCCL OR WITH_RCCL)
L
Leo Chen 已提交
118
    list(APPEND OP_FUNCTION_GENERETOR_DEPS nccl_context)
119
  endif()
L
Leo Chen 已提交
120

121 122 123 124
  if(WITH_XPU_BKCL)
    list(APPEND OP_FUNCTION_GENERETOR_DEPS bkcl_context)
  endif(WITH_XPU_BKCL)

L
Leo Chen 已提交
125
  add_executable(op_function_generator op_function_generator.cc)
126
  target_link_libraries(op_function_generator ${OP_FUNCTION_GENERETOR_DEPS})
127

L
Leo Chen 已提交
128 129
  get_property (os_dependency_modules GLOBAL PROPERTY OS_DEPENDENCY_MODULES)
  target_link_libraries(op_function_generator ${os_dependency_modules})
130 131 132
  if(WITH_ROCM)
    target_link_libraries(op_function_generator ${ROCM_HIPRTC_LIB})
  endif()
L
Leo Chen 已提交
133

134 135 136
  set(impl_file ${CMAKE_SOURCE_DIR}/paddle/fluid/pybind/op_function_impl.h)
  set(tmp_impl_file ${impl_file}.tmp)

137
  set(OP_IMPL_DEPS op_function_generator)
138
  if(WIN32)
139
    if("${CMAKE_GENERATOR}" STREQUAL "Ninja")
140
      set(op_impl_path "${CMAKE_CURRENT_BINARY_DIR}")
141
    else()
142
      set(op_impl_path "${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_BUILD_TYPE}")
143
    endif()
144

145 146 147 148
    file(WRITE ${CMAKE_BINARY_DIR}/paddle/fluid/pybind/op_function_generator_retry.bat ""
    "set build_times=1\n"
    ":retry\n"
    "ECHO op_function_generator run %build_times% time\n"
149
    "taskkill /f /im op_function_generator.exe 2>NUL\n"
150
    "${op_impl_path}/op_function_generator.exe ${tmp_impl_file}\n"
151 152
    "if %ERRORLEVEL% NEQ 0 (\n"
    "    set /a build_times=%build_times%+1\n"
Z
Zhou Wei 已提交
153
    "    if %build_times% GEQ 10 (\n"
154 155 156 157 158 159 160
    "        exit /b 1\n"
    "    ) else (\n"
    "        goto :retry\n"
    "    )\n"
    ")\n"
    "exit /b 0")

161
    if(${CBLAS_PROVIDER} STREQUAL MKLML)
162 163 164 165
      ADD_CUSTOM_COMMAND(OUTPUT ${op_impl_path}/libiomp5md.dll
        COMMAND ${CMAKE_COMMAND} -E copy ${MKLML_SHARED_IOMP_LIB} ${op_impl_path}
        DEPENDS mklml)
      list(APPEND OP_IMPL_DEPS ${op_impl_path}/libiomp5md.dll)
166
    else(${CBLAS_PROVIDER} STREQUAL EXTERN_OPENBLAS)
167 168 169 170
      ADD_CUSTOM_COMMAND(OUTPUT ${op_impl_path}/openblas.dll
        COMMAND ${CMAKE_COMMAND} -E copy ${OPENBLAS_SHARED_LIB} ${op_impl_path}
        DEPENDS extern_openblas)
      list(APPEND OP_IMPL_DEPS ${op_impl_path}/openblas.dll)
171
    endif()
L
Leo Chen 已提交
172
    if(WITH_MKLDNN)
173 174 175 176
      ADD_CUSTOM_COMMAND(OUTPUT ${op_impl_path}/mkldnn.dll
        COMMAND ${CMAKE_COMMAND} -E copy ${MKLDNN_SHARED_LIB} ${op_impl_path}
        DEPENDS mkldnn)
        list(APPEND OP_IMPL_DEPS ${op_impl_path}/mkldnn.dll)
177
    endif()
178 179 180 181 182 183

    add_custom_command(OUTPUT ${impl_file}
      COMMAND ${CMAKE_BINARY_DIR}/paddle/fluid/pybind/op_function_generator_retry.bat
      COMMAND ${CMAKE_COMMAND} -E copy_if_different ${tmp_impl_file} ${impl_file}
      COMMENT "copy_if_different ${tmp_impl_file} to ${impl_file}"
      DEPENDS ${OP_IMPL_DEPS})
L
Leo Chen 已提交
184
  else(WIN32)
185
    # If there are no *.so in /usr/lib or LD_LIBRARY_PATH,
L
Leo Chen 已提交
186
    # copy these *.so to current directory and append current directory to
187
    # LD_LIBRARY_PATH. This is different with Windows platformm, which search
L
Leo Chen 已提交
188
    # *.dll in current directory automatically.
189 190 191 192 193 194 195 196 197 198 199 200 201
    if(WITH_MKLML)
      ADD_CUSTOM_COMMAND(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/libiomp5.so
        COMMAND ${CMAKE_COMMAND} -E copy ${MKLML_SHARED_IOMP_LIB} ${CMAKE_CURRENT_BINARY_DIR}
        DEPENDS mklml)
      list(APPEND OP_IMPL_DEPS ${CMAKE_CURRENT_BINARY_DIR}/libiomp5.so)
    endif()
    if(WITH_MKLDNN)
      ADD_CUSTOM_COMMAND(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/libdnnl.so.0
        COMMAND ${CMAKE_COMMAND} -E copy ${MKLDNN_SHARED_LIB} ${CMAKE_CURRENT_BINARY_DIR}
        DEPENDS mkldnn)
      list(APPEND OP_IMPL_DEPS ${CMAKE_CURRENT_BINARY_DIR}/libdnnl.so.0)
    endif()
    add_custom_command(OUTPUT ${impl_file}
202
          COMMAND ${CMAKE_COMMAND} -E env "LD_LIBRARY_PATH=$ENV{LD_LIBRARY_PATH}:."
203
              "${CMAKE_CURRENT_BINARY_DIR}/op_function_generator"
204 205
              "${tmp_impl_file}"
          COMMAND ${CMAKE_COMMAND} -E copy_if_different ${tmp_impl_file} ${impl_file}
206
          COMMENT "copy_if_different ${tmp_impl_file} to ${impl_file}"
207 208
          DEPENDS ${OP_IMPL_DEPS}
          VERBATIM)
L
Leo Chen 已提交
209
  endif(WIN32)
210
  add_custom_target(op_function_generator_cmd ALL DEPENDS ${impl_file})
L
Leo Chen 已提交
211

212
  list(APPEND PYBIND_DEPS interpretercore standalone_executor)
213
  cc_library(paddle_pybind SHARED
214 215 216
    SRCS ${PYBIND_SRCS}
    DEPS ${PYBIND_DEPS} ${GLOB_OP_LIB} ${GLOB_OPERATOR_DEPS})

217 218 219 220 221 222 223
  if(NOT APPLE AND NOT WIN32)
    target_link_libraries(paddle_pybind rt)
  endif(NOT APPLE AND NOT WIN32)

  if(WITH_ROCM)
    target_link_libraries(paddle_pybind ${ROCM_HIPRTC_LIB})
  endif()
224

P
peizhilin 已提交
225 226
  get_property (os_dependency_modules GLOBAL PROPERTY OS_DEPENDENCY_MODULES)
  target_link_libraries(paddle_pybind ${os_dependency_modules})
227
  add_dependencies(paddle_pybind op_function_generator_cmd)
228
endif(WITH_PYTHON)