CMakeLists.txt 6.3 KB
Newer Older
Y
Yu Yang 已提交
1
add_subdirectory(details)
X
start  
Xin Pan 已提交
2
add_subdirectory(ir)
Q
qiaolongfei 已提交
3
# ddim lib
4 5
proto_library(framework_proto SRCS framework.proto)

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

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

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

26
if(WITH_GPU)
Q
qiaolongfei 已提交
27
  nv_test(mixed_vector_test SRCS mixed_vector_test.cc mixed_vector_test.cu DEPS place memory device_context tensor)
28 29 30 31
else()
  cc_test(mixed_vector_test SRCS mixed_vector_test.cc DEPS place memory device_context tensor)
endif()

Y
Yu Yang 已提交
32
cc_library(lod_tensor SRCS lod_tensor.cc DEPS ddim place tensor framework_proto recordio)
Y
Yi Wang 已提交
33
cc_test(lod_tensor_test SRCS lod_tensor_test.cc DEPS lod_tensor memory)
34
nv_test(lod_tensor_gpu_test SRCS lod_tensor_test.cu DEPS lod_tensor)
35

F
fengjiayi 已提交
36
cc_library(reader SRCS reader.cc DEPS lod_tensor ddim)
Y
yuyang18 已提交
37
cc_test(reader_test SRCS reader_test.cc DEPS reader)
F
fengjiayi 已提交
38

Y
Yi Wang 已提交
39
cc_test(variable_test SRCS variable_test.cc)
Y
Yi Wang 已提交
40

Y
Yi Wang 已提交
41
cc_library(threadpool SRCS threadpool.cc DEPS enforce)
Y
Yang Yu 已提交
42 43 44
cc_test(threadpool_test SRCS threadpool_test.cc DEPS threadpool)

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

47
cc_library(data_device_transform SRCS data_device_transform.cc DEPS tensor)
48
nv_test(data_device_transform_test SRCS data_device_transform_test.cu
49
        DEPS operator op_registry device_context math_function)
50

51 52 53 54 55 56 57
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()
58

59
cc_library(data_layout_transform SRCS data_layout_transform.cc DEPS tensor math_function)
60
cc_test(data_layout_transform_test SRCS data_layout_transform_test.cc DEPS data_layout_transform)
61

62 63
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 已提交
64

D
dangqingqing 已提交
65
cc_library(attribute SRCS attribute.cc DEPS framework_proto boost)
66 67
cc_test(program_desc_test SRCS program_desc_test.cc DEPS proto_desc
device_context)
R
reyoung 已提交
68
cc_library(op_proto_maker SRCS op_proto_maker.cc DEPS framework_proto attribute glog)
69
cc_test(op_proto_maker_test SRCS op_proto_maker_test.cc DEPS op_proto_maker)
70
cc_library(op_info SRCS op_info.cc DEPS attribute framework_proto)
T
tensor-tang 已提交
71
cc_library(shape_inference SRCS shape_inference.cc DEPS ddim attribute device_context)
72
cc_library(operator SRCS operator.cc DEPS op_info device_context tensor scope glog
Y
Yibing Liu 已提交
73
    shape_inference data_transform lod_tensor profiler)
74
cc_test(operator_test SRCS operator_test.cc DEPS operator op_registry device_context)
75
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 已提交
76

Y
Yu Yang 已提交
77
cc_library(op_registry SRCS op_registry.cc DEPS op_proto_maker op_info operator glog proto_desc)
D
dzhwinter 已提交
78
nv_test(op_registry_test SRCS op_registry_test.cc DEPS op_registry)
79

Y
Yi Wang 已提交
80
py_proto_compile(framework_py_proto SRCS framework.proto)
81 82 83
# 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)
84
add_custom_command(TARGET framework_py_proto POST_BUILD
85 86
    COMMAND ${CMAKE_COMMAND} -E make_directory ${PADDLE_BINARY_DIR}/python/paddle/fluid/proto
    COMMAND cp *.py ${PADDLE_BINARY_DIR}/python/paddle/fluid/proto/
87
    COMMENT "Copy generated python proto into directory paddle/fluid/proto."
88
    WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})
89

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

92 93
cc_library(feed_fetch_method SRCS feed_fetch_method.cc DEPS lod_tensor scope glog)

W
Wu Yi 已提交
94
if(WITH_DISTRIBUTE)
95
  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)
W
Wu Yi 已提交
96 97 98 99 100
  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()
  cc_library(executor SRCS executor.cc DEPS op_registry device_context scope framework_proto glog lod_rank_table feed_fetch_method)
endif()
Y
Yu Yang 已提交
101

D
dzhwinter 已提交
102
if (NOT WIN32)
Y
yuyang18 已提交
103 104 105 106 107
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 已提交
108
endif() # NOT WIN32
Q
qijun 已提交
109

Y
Yang Yang 已提交
110
cc_library(prune SRCS prune.cc DEPS framework_proto)
Y
Yang Yang 已提交
111
cc_test(prune_test SRCS prune_test.cc DEPS op_info prune recurrent_op device_context)
Y
Yu Yang 已提交
112 113
cc_test(var_type_inference_test SRCS var_type_inference_test.cc DEPS op_registry
        proto_desc)
Q
qijun 已提交
114 115
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 已提交
116

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

A
Abhinav Arora 已提交
120
# cc_test(channel_test SRCS channel_test.cc)
C
chengduo 已提交
121
cc_test(tuple_test SRCS tuple_test.cc )
122

Q
Qiao Longfei 已提交
123 124
cc_test(rw_lock_test SRCS rw_lock_test.cc)

125 126 127 128 129
# 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)