CMakeLists.txt 5.4 KB
Newer Older
P
peizhilin 已提交
1
proto_library(profiler_proto SRCS profiler.proto DEPS framework_proto simple_threadpool)
2
proto_library(error_codes_proto SRCS error_codes.proto)
3 4 5
if(WITH_GPU)
  proto_library(cuda_error_proto SRCS cuda_error.proto)
endif(WITH_GPU)
X
Xin Pan 已提交
6

7 8 9 10 11 12
if(WITH_XPU)
  set(XPU_CTX_DEPS xpulib)
ELSE()
  set(XPU_CTX_DEPS)
endif(WITH_XPU)

13 14 15 16 17 18 19
if (WITH_PYTHON)
  py_proto_compile(profiler_py_proto SRCS profiler.proto)
  add_custom_target(profiler_py_proto_init ALL COMMAND ${CMAKE_COMMAND} -E touch __init__.py)
  add_dependencies(profiler_py_proto profiler_py_proto_init)

  if (NOT WIN32)
    add_custom_command(TARGET profiler_py_proto POST_BUILD
20 21
        COMMAND ${CMAKE_COMMAND} -E make_directory ${PADDLE_BINARY_DIR}/python/paddle/fluid/proto/profiler
        COMMAND cp *.py ${PADDLE_BINARY_DIR}/python/paddle/fluid/proto/profiler
X
Xin Pan 已提交
22 23
        COMMENT "Copy generated python proto into directory paddle/fluid/proto/profiler."
        WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
24 25 26
  else(NOT WIN32)
    string(REPLACE "/" "\\" proto_dstpath "${PADDLE_BINARY_DIR}/python/paddle/fluid/proto/profiler/")
    add_custom_command(TARGET profiler_py_proto POST_BUILD
W
wopeizl 已提交
27 28 29 30
        COMMAND ${CMAKE_COMMAND} -E make_directory ${PADDLE_BINARY_DIR}/python/paddle/fluid/proto/profiler
        COMMAND copy /Y *.py ${proto_dstpath}
        COMMENT "Copy generated python proto into directory paddle/fluid/proto/profiler."
        WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
31 32
  endif(NOT WIN32)
endif()
33

34
cc_library(flags SRCS flags.cc DEPS gflags)
35

36 37 38
cc_library(errors SRCS errors.cc DEPS error_codes_proto)
cc_test(errors_test SRCS errors_test.cc DEPS errors enforce)

39 40 41 42 43
set(enforce_deps flags errors boost)
if(WITH_GPU)
  set(enforce_deps ${enforce_deps} cuda_error_proto)
endif()
cc_library(enforce INTERFACE SRCS enforce.cc DEPS ${enforce_deps})
H
hutuxian 已提交
44
cc_library(monitor SRCS monitor.cc)
Q
Qiao Longfei 已提交
45 46
cc_test(enforce_test SRCS enforce_test.cc DEPS stringpiece enforce)

T
tensor-tang 已提交
47 48 49 50 51
set(CPU_INFO_DEPS gflags glog enforce)
IF(WITH_XBYAK)
    list(APPEND CPU_INFO_DEPS xbyak)
ENDIF()
cc_library(cpu_info SRCS cpu_info.cc DEPS ${CPU_INFO_DEPS})
L
liaogang 已提交
52
cc_test(cpu_info_test SRCS cpu_info_test.cc DEPS cpu_info)
L
liaogang 已提交
53

54
nv_library(gpu_info SRCS gpu_info.cc DEPS gflags glog enforce monitor dynload_cuda)
55

T
Tao Luo 已提交
56
cc_library(place SRCS place.cc DEPS enforce boost)
L
liaogang 已提交
57
cc_test(place_test SRCS place_test.cc DEPS place glog gflags)
L
liaogang 已提交
58

59 60 61 62
if(WITH_XPU)
cc_library(xpu_info SRCS xpu_info.cc DEPS gflags glog enforce)
endif()

L
liaogang 已提交
63
add_subdirectory(dynload)
64
add_subdirectory(stream)
L
liaogang 已提交
65

T
tensor-tang 已提交
66 67 68
cc_library(cpu_helper SRCS cpu_helper.cc DEPS cblas enforce)
cc_test(cpu_helper_test SRCS cpu_helper_test.cc DEPS cpu_helper)

69
set(dgc_deps "")
G
gongweibao 已提交
70 71 72 73
IF(WITH_DGC)
    set(dgc_deps dgc)
ENDIF()

Q
qijun 已提交
74
IF(WITH_GPU)
75
    set(GPU_CTX_DEPS dynload_cuda dynamic_loader cuda_stream)
Q
qijun 已提交
76 77
ENDIF()

T
tensor-tang 已提交
78 79 80 81 82 83
IF(WITH_MKLDNN)
    set(MKLDNN_CTX_DEPS mkldnn)
ELSE()
    set(MKLDNN_CTX_DEPS)
ENDIF()

S
sneaxiy 已提交
84 85 86 87 88 89 90
nv_library(stream_callback_manager SRCS stream_callback_manager.cc DEPS simple_threadpool enforce) 
IF(WITH_GPU)
  set(STREAM_CALLBACK_DEPS stream_callback_manager)
ELSE()
  set(STREAM_CALLBACK_DEPS)
ENDIF()

91 92
cc_library(cudnn_workspace_helper SRCS cudnn_workspace_helper.cc DEPS boost)

93
# memcpy depends on device_context, here add deps individually for
Q
qijun 已提交
94
# avoiding cycle dependencies
95
cc_library(device_context SRCS device_context.cc init.cc DEPS simple_threadpool malloc xxhash ${STREAM_CALLBACK_DEPS}
96
    place eigen3 stringpiece cpu_helper cpu_info framework_proto ${GPU_CTX_DEPS} ${MKLDNN_CTX_DEPS}
97
    ${dgc_deps} dlpack cudnn_workspace_helper ${XPU_CTX_DEPS})
98

99
cc_library(collective_helper SRCS collective_helper.cc DEPS framework_proto  device_context enforce)
100

101 102 103 104 105
if(WITH_GPU)
    cc_library(cuda_resource_pool SRCS cuda_resource_pool.cc DEPS gpu_info)
    target_link_libraries(device_context cuda_resource_pool)
endif()

D
dzhwinter 已提交
106
nv_test(device_context_test SRCS device_context_test.cu DEPS device_context gpu_info)
107

108 109
cc_test(init_test SRCS init_test.cc DEPS device_context)

110
nv_test(cudnn_helper_test SRCS cudnn_helper_test.cc DEPS dynload_cuda)
111
nv_test(cudnn_desc_test SRCS cudnn_desc_test.cc DEPS dynload_cuda)
Y
Yi Wang 已提交
112
nv_test(transform_test SRCS transform_test.cu DEPS memory place device_context)
D
dangqingqing 已提交
113

114
cc_library(timer SRCS timer.cc)
115
cc_test(timer_test SRCS timer_test.cc DEPS timer)
116

D
dongdaxiang 已提交
117
cc_library(lodtensor_printer SRCS lodtensor_printer.cc DEPS ddim place tensor scope lod_tensor variable_helper framework_proto)
D
dongdaxiang 已提交
118
cc_test(lodtensor_printer_test SRCS lodtensor_printer_test.cc DEPS lodtensor_printer)
D
dongdaxiang 已提交
119

120
cc_library(device_tracer SRCS device_tracer.cc DEPS boost profiler_proto framework_proto ${GPU_CTX_DEPS})
121
if(WITH_GPU)
122
  nv_library(profiler SRCS profiler.cc profiler.cu DEPS device_tracer gpu_info enforce)
123 124
  nv_test(cuda_helper_test SRCS cuda_helper_test.cu)
  nv_library(device_memory_aligment SRCS device_memory_aligment.cc DEPS cpu_info gpu_info place)
125
else()
126 127
  cc_library(profiler SRCS profiler.cc DEPS device_tracer enforce)
  cc_library(device_memory_aligment SRCS device_memory_aligment.cc DEPS cpu_info place)
128
endif()
129

T
Tao Luo 已提交
130
cc_test(profiler_test SRCS profiler_test.cc DEPS profiler)
131

132 133
nv_test(float16_gpu_test SRCS float16_test.cu DEPS lod_tensor)
cc_test(float16_test SRCS float16_test.cc DEPS lod_tensor)
134

135 136
nv_test(test_limit_gpu_memory SRCS test_limit_gpu_memory.cu DEPS gpu_info flags)

Y
Yu Yang 已提交
137
nv_library(cuda_device_guard SRCS cuda_device_guard.cc DEPS gpu_info)
138

139 140 141 142 143
if(NOT APPLE AND NOT WIN32)
  cc_library(device_code SRCS device_code.cc DEPS device_context)
  if(WITH_GPU)
    cc_test(device_code_test SRCS device_code_test.cc DEPS device_code lod_tensor)
  endif()
144
endif()