CMakeLists.txt 1.0 KB
Newer Older
D
dzhwinter 已提交
1

W
wopeizl 已提交
2 3
set(PYBIND_DEPS pybind python proto_desc memory executor prune feed_fetch_method pass_builder parallel_executor profiler)
set(PYBIND_SRCS pybind.cc exception.cc protobuf.cc const_value.cc recordio.cc)
4
if(WITH_PYTHON)
5 6
  if(WITH_AMD_GPU)
    hip_library(paddle_pybind SHARED
D
dzhwinter 已提交
7
      SRCS ${PYBIND_SRCS}
D
dzhwinter 已提交
8
      DEPS ${PYBIND_DEPS}
W
Wu Yi 已提交
9
      ${GLOB_OP_LIB} ${GLOB_OPERATOR_DEPS})
10 11
  else()
    cc_library(paddle_pybind SHARED
D
dzhwinter 已提交
12
      SRCS ${PYBIND_SRCS}
D
dzhwinter 已提交
13
      DEPS ${PYBIND_DEPS}
W
Wu Yi 已提交
14
      ${GLOB_OP_LIB} ${GLOB_OPERATOR_DEPS})
D
dzhwinter 已提交
15
    if(NOT APPLE AND NOT ANDROID AND NOT WIN32)
16
      target_link_libraries(paddle_pybind rt)
D
dzhwinter 已提交
17
    endif(NOT APPLE AND NOT ANDROID AND NOT WIN32)
18
  endif(WITH_AMD_GPU)
19

P
peizhilin 已提交
20
  if(WIN32)
P
peizhilin 已提交
21 22 23 24
    if(WITH_GPU AND NOT WITH_DSO)
      get_property(cuda_modules GLOBAL PROPERTY CUDA_MODULES)
      target_link_libraries(paddle_pybind ${cuda_modules})
    endif(WITH_GPU AND NOT WITH_DSO)
P
peizhilin 已提交
25 26 27
    target_link_libraries(paddle_pybind shlwapi)
  endif(WIN32)

28
  cc_test(tensor_py_test SRCS tensor_py_test.cc DEPS python)
29
endif(WITH_PYTHON)