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

D
dzhwinter 已提交
2 3 4 5 6 7 8 9 10 11 12
# windows treat symbolic file as a real file, which is different with unix
# We create a hidden file and compile it instead of origin source file.
function(windows_symbolic TARGET)
  set(oneValueArgs "")
  set(multiValueArgs SRCS DEPS)
  cmake_parse_arguments(windows_symbolic "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
  foreach(src ${windows_symbolic_SRCS})
  get_filename_component(src ${src} NAME_WE)
  if (NOT EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${src}.cc OR NOT EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${src}.cu)
      message(FATAL " ${src}.cc and ${src}.cu must exsits, and ${src}.cu must be symbolic file.")
  endif()
D
dzhwinter 已提交
13 14 15 16 17 18 19 20 21 22 23 24

  # only copy the xx.cu to .xx.cu when the content are modified
  set(copy_flag 1)
  if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.${src}.cu)
  file(READ ${CMAKE_CURRENT_SOURCE_DIR}/${src}.cc SOURCE_STR)
  file(READ ${CMAKE_CURRENT_SOURCE_DIR}/.${src}.cu TARGET_STR)
  if (SOURCE_STR STREQUAL TARGET_STR)
    set(copy_flag 0)
  endif()
  endif()
  if (copy_flag)
  add_custom_command(OUTPUT .${src}.cu
D
dzhwinter 已提交
25 26 27
          COMMAND ${CMAKE_COMMAND} -E remove ${CMAKE_CURRENT_SOURCE_DIR}/.${src}.cu
          COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_CURRENT_SOURCE_DIR}/${src}.cc" "${CMAKE_CURRENT_SOURCE_DIR}/.${src}.cu"
          COMMENT "create hidden file of ${src}.cu")
D
dzhwinter 已提交
28 29
  endif(copy_flag)
  add_custom_target(${TARGET} ALL DEPENDS .${src}.cu)
D
dzhwinter 已提交
30 31 32
  endforeach()
endfunction()

X
start  
Xin Pan 已提交
33
add_subdirectory(ir)
D
dzhwinter 已提交
34
add_subdirectory(details)
Q
qiaolongfei 已提交
35
# ddim lib
36
proto_library(framework_proto SRCS framework.proto)
W
Wang Guibao 已提交
37
proto_library(async_executor_proto SRCS data_feed.proto)
38

39
cc_library(ddim SRCS ddim.cc DEPS eigen3 boost)
40 41
cc_test(ddim_test SRCS ddim_test.cc DEPS ddim)
nv_test(dim_test SRCS dim_test.cu DEPS ddim)
Y
yuyang18 已提交
42
cc_library(data_type SRCS data_type.cc DEPS framework_proto ddim device_context)
D
dzhwinter 已提交
43
cc_test(data_type_test SRCS data_type_test.cc DEPS data_type place tensor)
44
if(WITH_GPU)
D
dzhwinter 已提交
45 46 47 48 49 50 51
  if (WIN32)
    windows_symbolic(tensor_util SRCS tensor_util.cu)
    nv_library(tensor SRCS tensor.cc .tensor_util.cu DEPS place memory data_type device_context)
    add_dependencies(tensor tensor_util)
  else()
    nv_library(tensor SRCS tensor.cc tensor_util.cu DEPS place memory data_type device_context)
  endif(WIN32)
Y
Yang Yu 已提交
52
else()
M
minqiyang 已提交
53
  cc_library(tensor SRCS tensor.cc tensor_util.cc DEPS place memory data_type device_context)
54
endif()
D
dzhwinter 已提交
55

Y
Yu Yang 已提交
56
cc_test(tensor_test SRCS tensor_test.cc DEPS tensor)
57
if(WITH_GPU)
Y
Yang Yu 已提交
58 59 60 61
  nv_test(tensor_util_test SRCS tensor_util_test.cc tensor_util_test.cu DEPS tensor)
else()
  cc_test(tensor_util_test SRCS tensor_util_test.cc DEPS tensor)
endif()
D
dzhwinter 已提交
62

Y
Update  
Yi Wang 已提交
63
cc_test(eigen_test SRCS eigen_test.cc DEPS tensor)
L
liaogang 已提交
64

65
if(WITH_GPU)
Q
qiaolongfei 已提交
66
  nv_test(mixed_vector_test SRCS mixed_vector_test.cc mixed_vector_test.cu DEPS place memory device_context tensor)
67 68 69
else()
  cc_test(mixed_vector_test SRCS mixed_vector_test.cc DEPS place memory device_context tensor)
endif()
P
peizhilin 已提交
70
cc_library(lod_tensor SRCS lod_tensor.cc DEPS ddim place tensor framework_proto recordio version)
D
dzhwinter 已提交
71

Y
Yi Wang 已提交
72
cc_test(lod_tensor_test SRCS lod_tensor_test.cc DEPS lod_tensor memory)
73
nv_test(lod_tensor_gpu_test SRCS lod_tensor_test.cu DEPS lod_tensor)
74

F
fengjiayi 已提交
75
cc_library(reader SRCS reader.cc DEPS lod_tensor ddim)
Y
yuyang18 已提交
76
cc_test(reader_test SRCS reader_test.cc DEPS reader)
F
fengjiayi 已提交
77

Y
Yi Wang 已提交
78
cc_test(variable_test SRCS variable_test.cc)
Y
Yi Wang 已提交
79

Y
Yi Wang 已提交
80
cc_library(threadpool SRCS threadpool.cc DEPS enforce)
Y
Yang Yu 已提交
81 82 83
cc_test(threadpool_test SRCS threadpool_test.cc DEPS threadpool)

cc_library(scope SRCS scope.cc DEPS glog threadpool)
Y
Yi Wang 已提交
84
cc_test(scope_test SRCS scope_test.cc DEPS scope)
L
liaogang 已提交
85

86
cc_library(data_device_transform SRCS data_device_transform.cc DEPS tensor)
87
nv_test(data_device_transform_test SRCS data_device_transform_test.cu
88
        DEPS operator op_registry device_context math_function)
89

90
if(WITH_GPU)
D
dzhwinter 已提交
91
  if (WIN32)
D
dzhwinter 已提交
92 93
    # windows treat symbolic file as a real file, which is different with unix
    # We create a hidden file and compile it instead of origin source file.
D
dzhwinter 已提交
94 95 96 97 98 99
      windows_symbolic(hidden_file SRCS data_type_transform.cu)
      nv_library(data_type_transform SRCS .data_type_transform.cu DEPS tensor)
      add_dependencies(data_type_transform hidden_file)
  else()
      nv_library(data_type_transform SRCS data_type_transform.cu DEPS tensor)
  endif(WIN32)
100 101 102 103 104
  nv_test(data_type_transform_test SRCS data_type_transform_test.cc data_type_transform_test.cu DEPS data_type_transform)
else()
  cc_library(data_type_transform SRCS data_type_transform.cc DEPS tensor)
  cc_test(data_type_transform_test SRCS data_type_transform_test.cc DEPS data_type_transform)
endif()
105

106
cc_library(data_layout_transform SRCS data_layout_transform.cc DEPS tensor math_function)
107
cc_test(data_layout_transform_test SRCS data_layout_transform_test.cc DEPS data_layout_transform)
108

109 110
cc_library(data_transform SRCS data_transform.cc DEPS math_function tensor
        framework_proto selected_rows data_device_transform data_type_transform data_layout_transform)
Q
Qiao Longfei 已提交
111

D
dangqingqing 已提交
112
cc_library(attribute SRCS attribute.cc DEPS framework_proto boost)
113 114
cc_test(program_desc_test SRCS program_desc_test.cc DEPS proto_desc
device_context)
R
reyoung 已提交
115
cc_library(op_proto_maker SRCS op_proto_maker.cc DEPS framework_proto attribute glog)
116
cc_test(op_proto_maker_test SRCS op_proto_maker_test.cc DEPS op_proto_maker)
117
cc_library(op_info SRCS op_info.cc DEPS attribute framework_proto)
T
tensor-tang 已提交
118
cc_library(shape_inference SRCS shape_inference.cc DEPS ddim attribute device_context)
D
dzhwinter 已提交
119

S
superjomn 已提交
120
cc_library(transfer_scope_cache SRCS transfer_scope_cache.cc DEPS scope framework_proto device_context)
121
cc_library(operator SRCS operator.cc DEPS op_info device_context tensor scope glog
122
    shape_inference data_transform lod_tensor profiler transfer_scope_cache)
D
dzhwinter 已提交
123

124
cc_test(operator_test SRCS operator_test.cc DEPS operator op_registry device_context)
X
version  
Xin Pan 已提交
125 126

cc_library(version SRCS version.cc)
X
Xin Pan 已提交
127 128
cc_test(version_test SRCS version_test.cc DEPS version)

X
version  
Xin Pan 已提交
129
cc_library(proto_desc SRCS var_desc.cc op_desc.cc block_desc.cc program_desc.cc DEPS shape_inference op_info operator glog version)
B
baojun-nervana 已提交
130
cc_library(ngraph_bridge SRCS ngraph_bridge.cc DEPS operator framework_proto)
131
if(NOT WIN32)
B
baojun-nervana 已提交
132 133
cc_library(ngraph_operator SRCS ngraph_operator.cc DEPS ngraph_bridge operator op_info device_context tensor scope glog
  shape_inference data_transform lod_tensor profiler)
134
endif(NOT WIN32)
Q
Qiao Longfei 已提交
135

Y
Yu Yang 已提交
136
cc_library(op_registry SRCS op_registry.cc DEPS op_proto_maker op_info operator glog proto_desc)
D
dzhwinter 已提交
137
nv_test(op_registry_test SRCS op_registry_test.cc DEPS op_registry)
138

W
Wang Guibao 已提交
139
py_proto_compile(framework_py_proto SRCS framework.proto data_feed.proto)
140 141 142
# Generate an empty __init__.py to make framework_py_proto as a valid python module.
add_custom_target(framework_py_proto_init ALL COMMAND ${CMAKE_COMMAND} -E touch __init__.py)
add_dependencies(framework_py_proto framework_py_proto_init)
P
peizhilin 已提交
143 144 145 146 147 148 149 150 151 152 153 154 155
if (NOT WIN32)
  add_custom_command(TARGET framework_py_proto POST_BUILD
      COMMAND ${CMAKE_COMMAND} -E make_directory ${PADDLE_BINARY_DIR}/python/paddle/fluid/proto
      COMMAND cp *.py ${PADDLE_BINARY_DIR}/python/paddle/fluid/proto/
      COMMENT "Copy generated python proto into directory paddle/fluid/proto."
      WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
else(NOT WIN32)
  string(REPLACE "/" "\\" proto_dstpath "${PADDLE_BINARY_DIR}/python/paddle/fluid/proto/")
  add_custom_command(TARGET framework_py_proto POST_BUILD
          COMMAND ${CMAKE_COMMAND} -E make_directory ${PADDLE_BINARY_DIR}/python/paddle/fluid/proto
          COMMAND copy /Y *.py ${proto_dstpath}
          COMMENT "Copy generated python proto into directory paddle/fluid/proto."
          WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
D
dzhwinter 已提交
156
endif(NOT WIN32)
157

Y
Yu Yang 已提交
158
cc_library(lod_rank_table SRCS lod_rank_table.cc DEPS lod_tensor)
Y
Yan Chunwei 已提交
159

160
cc_library(feed_fetch_method SRCS feed_fetch_method.cc DEPS lod_tensor scope glog)
W
Wang Guibao 已提交
161
cc_library(variable_helper SRCS variable_helper.cc DEPS lod_tensor)
162

W
Wang Guibao 已提交
163
cc_library(naive_executor SRCS naive_executor.cc DEPS op_registry device_context scope framework_proto glog lod_rank_table feed_fetch_method graph_to_program_pass variable_helper)
164

W
Wu Yi 已提交
165
if(WITH_DISTRIBUTE)
W
Wang Guibao 已提交
166
  cc_library(executor SRCS executor.cc DEPS op_registry device_context scope framework_proto glog lod_rank_table feed_fetch_method sendrecvop_grpc cares grpc++_unsecure grpc_unsecure gpr graph_to_program_pass variable_helper)
W
Wu Yi 已提交
167 168 169
  set(DISTRIBUTE_COMPILE_FLAGS "-Wno-non-virtual-dtor -Wno-error=non-virtual-dtor -Wno-error=delete-non-virtual-dtor")
  set_source_files_properties(executor.cc PROPERTIES COMPILE_FLAGS ${DISTRIBUTE_COMPILE_FLAGS})
else()
170
  if(NOT WIN32)
W
Wang Guibao 已提交
171
    cc_library(executor SRCS executor.cc DEPS op_registry device_context scope framework_proto glog lod_rank_table feed_fetch_method graph_to_program_pass ngraph_operator variable_helper)
172
  else(NOT WIN32)
W
Wang Guibao 已提交
173
    cc_library(executor SRCS executor.cc DEPS op_registry device_context scope framework_proto glog lod_rank_table feed_fetch_method graph_to_program_pass variable_helper)
174
  endif(NOT WIN32)
T
Tao Luo 已提交
175
  cc_test(test_naive_executor SRCS naive_executor_test.cc DEPS naive_executor elementwise_add_op)
W
Wu Yi 已提交
176
endif()
B
baojun-nervana 已提交
177

178 179 180
cc_library(parallel_executor SRCS parallel_executor.cc DEPS
        threaded_ssa_graph_executor scope_buffered_ssa_graph_executor
        graph build_strategy
W
Wang Guibao 已提交
181
        fast_threaded_ssa_graph_executor variable_helper)
Q
qijun 已提交
182

H
heqiaozhi 已提交
183
cc_library(async_executor SRCS async_executor.cc data_feed.cc data_feed_factory.cc executor_thread_worker.cc DEPS op_registry device_context scope framework_proto glog lod_rank_table feed_fetch_method graph_to_program_pass async_executor_proto variable_helper pslib_brpc pslib)
W
Wang Guibao 已提交
184 185

cc_test(data_feed_test SRCS data_feed_test.cc DEPS async_executor)
Y
Yang Yang 已提交
186
cc_library(prune SRCS prune.cc DEPS framework_proto)
Y
Yang Yang 已提交
187
cc_test(prune_test SRCS prune_test.cc DEPS op_info prune recurrent_op device_context)
Y
Yu Yang 已提交
188 189
cc_test(var_type_inference_test SRCS var_type_inference_test.cc DEPS op_registry
        proto_desc)
Q
qijun 已提交
190 191
cc_library(selected_rows SRCS selected_rows.cc DEPS tensor)
cc_test(selected_rows_test SRCS selected_rows_test.cc DEPS selected_rows)
D
dzhwinter 已提交
192

Q
Qiao Longfei 已提交
193
cc_test(op_kernel_type_test SRCS op_kernel_type_test.cc DEPS place device_context framework_proto)
Y
Yang Yu 已提交
194
cc_test(cow_ptr_tests SRCS details/cow_ptr_test.cc)
M
minqiyang 已提交
195

C
chengduo 已提交
196
cc_test(tuple_test SRCS tuple_test.cc )
197

D
dzhwinter 已提交
198
if (NOT WIN32)
Q
Qiao Longfei 已提交
199
cc_test(rw_lock_test SRCS rw_lock_test.cc)
D
dzhwinter 已提交
200
endif (NOT WIN32)
S
sneaxiy 已提交
201 202 203

cc_library(dlpack_tensor SRCS dlpack_tensor.cc DEPS tensor dlpack)
cc_test(dlpack_tensor_test SRCS dlpack_tensor_test.cc DEPS dlpack_tensor glog)