CMakeLists.txt 3.2 KB
Newer Older
H
hutuxian 已提交
1
set(PYBIND_DEPS pybind python proto_desc memory executor fleet_wrapper box_wrapper nccl_wrapper prune
J
Jiabin Yang 已提交
2
  feed_fetch_method pass_builder parallel_executor profiler layer tracer engine scope_pool
3 4 5 6 7
  analysis_predictor imperative_profiler imperative_flag save_load_util dlpack_tensor device_context)

if(NOT WIN32)
  set(PYBIND_DEPS ${PYBIND_DEPS} nccl_context)
endif(NOT WIN32)
F
flame 已提交
8

S
sneaxiy 已提交
9 10 11
if(WITH_PYTHON)
  list(APPEND PYBIND_DEPS py_func_op)
endif()
12 13 14 15 16 17 18 19 20 21

if (WITH_DISTRIBUTE)
  list(APPEND PYBIND_DEPS communicator)
endif()

set(PYBIND_SRCS
  pybind.cc
  exception.cc
  protobuf.cc
  const_value.cc
22
  global_value_getter_setter.cc
23 24
  reader_py.cc
  fleet_wrapper_py.cc
H
hutuxian 已提交
25
  box_helper_py.cc
26 27 28 29 30 31 32 33 34
  nccl_wrapper_py.cc
  data_set_py.cc
  imperative.cc
  ir.cc
  inference_api.cc)

if (WITH_DISTRIBUTE)
  list(APPEND PYBIND_SRCS communicator_py.cc)
endif()
35

36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
# generate op pybind functions automatically for dygraph.
set(OP_FUNCTION_GENERETOR_DEPS pybind proto_desc executor layer tracer engine imperative_profiler imperative_flag)
list(APPEND OP_FUNCTION_GENERETOR_DEPS ${GLOB_OP_LIB})
list(APPEND OP_FUNCTION_GENERETOR_DEPS ${GLOB_OPERATOR_DEPS})

add_executable(op_function_generator op_function_generator.cc)
target_link_libraries(op_function_generator ${OP_FUNCTION_GENERETOR_DEPS} )
get_property (os_dependency_modules GLOBAL PROPERTY OS_DEPENDENCY_MODULES)
target_link_libraries(op_function_generator ${os_dependency_modules})

if (WIN32)
  add_custom_target(op_function_cmd 
    COMMAND "${CMAKE_BINARY_DIR}/paddle/fluid/pybind/${CMAKE_BUILD_TYPE}/op_function_generator" 
    "${CMAKE_SOURCE_DIR}/paddle/fluid/pybind/op_function_impl.h") 
    add_dependencies(op_function_cmd op_function_generator)
  if(WITH_MKL)
  add_custom_target(copy_dll 
        COMMAND ${CMAKE_COMMAND} -E copy ${MKLDNN_SHARED_LIB} ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_BUILD_TYPE}
        COMMAND ${CMAKE_COMMAND} -E copy ${MKLML_SHARED_LIB} ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_BUILD_TYPE}
        COMMAND ${CMAKE_COMMAND} -E copy ${MKLML_SHARED_LIB_DEPS} ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_BUILD_TYPE}
        COMMAND ${CMAKE_COMMAND} -E copy ${MKLML_SHARED_IOMP_LIB} ${CMAKE_CURRENT_BINARY_DIR}/${CMAKE_BUILD_TYPE}
        )
  add_dependencies(copy_dll op_function_generator)
  add_dependencies(op_function_cmd copy_dll)
  endif(WITH_MKL)
else(WIN32)
  add_custom_target(op_function_cmd 
    COMMAND "${CMAKE_CURRENT_BINARY_DIR}/op_function_generator" 
    "${CMAKE_SOURCE_DIR}/paddle/fluid/pybind/op_function_impl.h") 
    add_dependencies(op_function_cmd op_function_generator)
endif(WIN32)


69
if(WITH_PYTHON)
70 71
  if(WITH_AMD_GPU)
    hip_library(paddle_pybind SHARED
D
dzhwinter 已提交
72
      SRCS ${PYBIND_SRCS}
S
sabreshao 已提交
73 74
      DEPS ARCHIVE_START ${PYBIND_DEPS}
      ${GLOB_OP_LIB} ${GLOB_OPERATOR_DEPS} ARCHIVE_END)
75 76
  else()
    cc_library(paddle_pybind SHARED
D
dzhwinter 已提交
77
      SRCS ${PYBIND_SRCS}
D
dzhwinter 已提交
78
      DEPS ${PYBIND_DEPS}
W
Wu Yi 已提交
79
      ${GLOB_OP_LIB} ${GLOB_OPERATOR_DEPS})
T
Tao Luo 已提交
80
    if(NOT APPLE AND NOT WIN32)
81
      target_link_libraries(paddle_pybind rt)
T
Tao Luo 已提交
82
    endif(NOT APPLE AND NOT WIN32)
83
  endif(WITH_AMD_GPU)
84

P
peizhilin 已提交
85 86
  get_property (os_dependency_modules GLOBAL PROPERTY OS_DEPENDENCY_MODULES)
  target_link_libraries(paddle_pybind ${os_dependency_modules})
87
  add_dependencies(paddle_pybind op_function_cmd) 
P
peizhilin 已提交
88

89
endif(WITH_PYTHON)