CMakeLists.txt 6.7 KB
Newer Older
X
start  
Xin Pan 已提交
1
add_subdirectory(ir)
D
dzhwinter 已提交
2 3 4
if (NOT WIN32)
add_subdirectory(details)
endif (NOT WIN32)
Q
qiaolongfei 已提交
5
# ddim lib
6 7
proto_library(framework_proto SRCS framework.proto)

8
cc_library(ddim SRCS ddim.cc DEPS eigen3 boost)
9 10
cc_test(ddim_test SRCS ddim_test.cc DEPS ddim)
nv_test(dim_test SRCS dim_test.cu DEPS ddim)
Y
yuyang18 已提交
11
cc_library(data_type SRCS data_type.cc DEPS framework_proto ddim device_context)
D
dzhwinter 已提交
12
cc_test(data_type_test SRCS data_type_test.cc DEPS data_type place tensor)
13
if(WITH_GPU)
M
minqiyang 已提交
14
  nv_library(tensor SRCS tensor.cc tensor_util.cu DEPS place memory data_type device_context)
Y
Yang Yu 已提交
15
else()
M
minqiyang 已提交
16
  cc_library(tensor SRCS tensor.cc tensor_util.cc DEPS place memory data_type device_context)
17
endif()
D
dzhwinter 已提交
18

Y
Yu Yang 已提交
19
cc_test(tensor_test SRCS tensor_test.cc DEPS tensor)
20
if(WITH_GPU)
Y
Yang Yu 已提交
21 22 23 24
  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 已提交
25

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

28
if(WITH_GPU)
Q
qiaolongfei 已提交
29
  nv_test(mixed_vector_test SRCS mixed_vector_test.cc mixed_vector_test.cu DEPS place memory device_context tensor)
30 31 32
else()
  cc_test(mixed_vector_test SRCS mixed_vector_test.cc DEPS place memory device_context tensor)
endif()
D
dzhwinter 已提交
33
if (NOT WIN32)
Y
Yu Yang 已提交
34
cc_library(lod_tensor SRCS lod_tensor.cc DEPS ddim place tensor framework_proto recordio)
D
dzhwinter 已提交
35 36 37 38
else()
cc_library(lod_tensor SRCS lod_tensor.cc DEPS ddim place tensor framework_proto)
endif (NOT WIN32)

Y
Yi Wang 已提交
39
cc_test(lod_tensor_test SRCS lod_tensor_test.cc DEPS lod_tensor memory)
40
nv_test(lod_tensor_gpu_test SRCS lod_tensor_test.cu DEPS lod_tensor)
41

F
fengjiayi 已提交
42
cc_library(reader SRCS reader.cc DEPS lod_tensor ddim)
Y
yuyang18 已提交
43
cc_test(reader_test SRCS reader_test.cc DEPS reader)
F
fengjiayi 已提交
44

Y
Yi Wang 已提交
45
cc_test(variable_test SRCS variable_test.cc)
Y
Yi Wang 已提交
46

Y
Yi Wang 已提交
47
cc_library(threadpool SRCS threadpool.cc DEPS enforce)
Y
Yang Yu 已提交
48 49 50
cc_test(threadpool_test SRCS threadpool_test.cc DEPS threadpool)

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

53
cc_library(data_device_transform SRCS data_device_transform.cc DEPS tensor)
54
nv_test(data_device_transform_test SRCS data_device_transform_test.cu
55
        DEPS operator op_registry device_context math_function)
56

57 58 59 60 61 62 63
if(WITH_GPU)
  nv_library(data_type_transform SRCS data_type_transform.cu DEPS tensor)
  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()
64

65
cc_library(data_layout_transform SRCS data_layout_transform.cc DEPS tensor math_function)
66
cc_test(data_layout_transform_test SRCS data_layout_transform_test.cc DEPS data_layout_transform)
67

68 69
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 已提交
70

D
dangqingqing 已提交
71
cc_library(attribute SRCS attribute.cc DEPS framework_proto boost)
72 73
cc_test(program_desc_test SRCS program_desc_test.cc DEPS proto_desc
device_context)
R
reyoung 已提交
74
cc_library(op_proto_maker SRCS op_proto_maker.cc DEPS framework_proto attribute glog)
75
cc_test(op_proto_maker_test SRCS op_proto_maker_test.cc DEPS op_proto_maker)
76
cc_library(op_info SRCS op_info.cc DEPS attribute framework_proto)
T
tensor-tang 已提交
77
cc_library(shape_inference SRCS shape_inference.cc DEPS ddim attribute device_context)
D
dzhwinter 已提交
78 79

if (NOT WIN32)
80
cc_library(operator SRCS operator.cc DEPS op_info device_context tensor scope glog
Y
Yibing Liu 已提交
81
    shape_inference data_transform lod_tensor profiler)
D
dzhwinter 已提交
82 83 84 85 86
else()
cc_library(operator SRCS operator.cc DEPS op_info device_context tensor scope glog
    shape_inference data_transform lod_tensor)
endif(NOT WIN32)

87
cc_test(operator_test SRCS operator_test.cc DEPS operator op_registry device_context)
88
cc_library(proto_desc SRCS var_desc.cc op_desc.cc block_desc.cc program_desc.cc DEPS shape_inference op_info operator glog)
Q
Qiao Longfei 已提交
89

Y
Yu Yang 已提交
90
cc_library(op_registry SRCS op_registry.cc DEPS op_proto_maker op_info operator glog proto_desc)
D
dzhwinter 已提交
91
nv_test(op_registry_test SRCS op_registry_test.cc DEPS op_registry)
92

D
dzhwinter 已提交
93
if (NOT WIN32)
Y
Yi Wang 已提交
94
py_proto_compile(framework_py_proto SRCS framework.proto)
95 96 97
# 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)
98
add_custom_command(TARGET framework_py_proto POST_BUILD
99 100
    COMMAND ${CMAKE_COMMAND} -E make_directory ${PADDLE_BINARY_DIR}/python/paddle/fluid/proto
    COMMAND cp *.py ${PADDLE_BINARY_DIR}/python/paddle/fluid/proto/
101
    COMMENT "Copy generated python proto into directory paddle/fluid/proto."
102
    WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
D
dzhwinter 已提交
103
endif(NOT WIN32)
104

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

107 108
cc_library(feed_fetch_method SRCS feed_fetch_method.cc DEPS lod_tensor scope glog)

W
Wu Yi 已提交
109
if(WITH_DISTRIBUTE)
X
Xin Pan 已提交
110
  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)
W
Wu Yi 已提交
111 112 113
  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()
X
Xin Pan 已提交
114
  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)
W
Wu Yi 已提交
115
endif()
Y
Yu Yang 已提交
116

D
dzhwinter 已提交
117
if (NOT WIN32)
Y
yuyang18 已提交
118 119 120 121 122
cc_library(parallel_executor SRCS parallel_executor.cc DEPS
        threaded_ssa_graph_executor scope_buffered_ssa_graph_executor
        graph graph_viz_pass multi_devices_graph_pass
        multi_devices_graph_print_pass multi_devices_graph_check_pass
        fast_threaded_ssa_graph_executor)
D
dzhwinter 已提交
123
endif() # NOT WIN32
Q
qijun 已提交
124

Y
Yang Yang 已提交
125
cc_library(prune SRCS prune.cc DEPS framework_proto)
Y
Yang Yang 已提交
126
cc_test(prune_test SRCS prune_test.cc DEPS op_info prune recurrent_op device_context)
Y
Yu Yang 已提交
127 128
cc_test(var_type_inference_test SRCS var_type_inference_test.cc DEPS op_registry
        proto_desc)
Q
qijun 已提交
129 130
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 已提交
131

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

A
Abhinav Arora 已提交
135
# cc_test(channel_test SRCS channel_test.cc)
C
chengduo 已提交
136
cc_test(tuple_test SRCS tuple_test.cc )
137

D
dzhwinter 已提交
138
if (NOT WIN32)
Q
Qiao Longfei 已提交
139
cc_test(rw_lock_test SRCS rw_lock_test.cc)
D
dzhwinter 已提交
140
endif (NOT WIN32)
Q
Qiao Longfei 已提交
141

142 143 144 145 146
# disable test temporarily.
# TODO https://github.com/PaddlePaddle/Paddle/issues/11971
# cc_test(concurrency_test SRCS concurrency_test.cc DEPS go_op channel_close_op channel_create_op
#         channel_send_op channel_recv_op sum_op select_op elementwise_add_op compare_op
#         conditional_block_op while_op assign_op print_op executor proto_desc)