CMakeLists.txt 1.2 KB
Newer Older
1
set(PYBIND_DEPS pybind python proto_desc memory executor fleet_wrapper nccl_wrapper prune
M
minqiyang 已提交
2
  feed_fetch_method pass_builder parallel_executor profiler layer scope_pool
3
  tracer analysis_predictor imperative_profiler nccl_context)
F
flame 已提交
4

S
sneaxiy 已提交
5 6 7
if(WITH_PYTHON)
  list(APPEND PYBIND_DEPS py_func_op)
endif()
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28

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

set(PYBIND_SRCS
  pybind.cc
  exception.cc
  protobuf.cc
  const_value.cc
  reader_py.cc
  fleet_wrapper_py.cc
  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()
29

30
if(WITH_PYTHON)
31 32
  if(WITH_AMD_GPU)
    hip_library(paddle_pybind SHARED
D
dzhwinter 已提交
33
      SRCS ${PYBIND_SRCS}
S
sabreshao 已提交
34 35
      DEPS ARCHIVE_START ${PYBIND_DEPS}
      ${GLOB_OP_LIB} ${GLOB_OPERATOR_DEPS} ARCHIVE_END)
36 37
  else()
    cc_library(paddle_pybind SHARED
D
dzhwinter 已提交
38
      SRCS ${PYBIND_SRCS}
D
dzhwinter 已提交
39
      DEPS ${PYBIND_DEPS}
W
Wu Yi 已提交
40
      ${GLOB_OP_LIB} ${GLOB_OPERATOR_DEPS})
T
Tao Luo 已提交
41
    if(NOT APPLE AND NOT WIN32)
42
      target_link_libraries(paddle_pybind rt)
T
Tao Luo 已提交
43
    endif(NOT APPLE AND NOT WIN32)
44
  endif(WITH_AMD_GPU)
45

P
peizhilin 已提交
46 47
  get_property (os_dependency_modules GLOBAL PROPERTY OS_DEPENDENCY_MODULES)
  target_link_libraries(paddle_pybind ${os_dependency_modules})
P
peizhilin 已提交
48

49
endif(WITH_PYTHON)