CMakeLists.txt 10.0 KB
Newer Older
W
Wu Yi 已提交
1
include(operators)
D
dzhwinter 已提交
2

W
Wilber 已提交
3
# solve "math constants not defined" problems caused by the order of inclusion
4 5 6
# of <cmath> and the definition of macro _USE_MATH_DEFINES
add_definitions(-D_USE_MATH_DEFINES)

W
Wu Yi 已提交
7 8 9
# clean cache and pybind_file content first when rebuild
unset(GLOB_OP_LIB CACHE)
unset(OP_LIBRARY CACHE)
10 11 12 13
set(pybind_file ${PADDLE_BINARY_DIR}/paddle/fluid/pybind/pybind.h.tmp CACHE INTERNAL "pybind.h file")
set(pybind_file_final ${PADDLE_BINARY_DIR}/paddle/fluid/pybind/pybind.h)
file(WRITE ${pybind_file} "// Generated by the paddle/fluid/operators/CMakeLists.txt.  DO NOT EDIT!\n\n")

Q
qijun 已提交
14
add_subdirectory(math)
W
Wu Yi 已提交
15 16 17 18 19 20 21 22
add_subdirectory(controlflow)
add_subdirectory(detection)
add_subdirectory(elementwise)
add_subdirectory(fused)
add_subdirectory(metrics)
add_subdirectory(optimizers)
add_subdirectory(reduce_ops)
add_subdirectory(sequence_ops)
S
Steffy-zxf 已提交
23
add_subdirectory(string)
T
tensor-tang 已提交
24
add_subdirectory(jit)
L
levi131 已提交
25
add_subdirectory(prim_ops)
L
lidanqing 已提交
26 27 28
if(WITH_MKLDNN)
    add_subdirectory(mkldnn)
endif()
Q
QI JUN 已提交
29

T
tangwei12 已提交
30

T
typhoonzero 已提交
31
if(WITH_DISTRIBUTE)
32
    add_subdirectory(collective)
W
Wu Yi 已提交
33
endif()
34

T
tangwei12 已提交
35 36 37 38
if (WITH_PSCORE)
    add_subdirectory(pscore)
endif()

39 40
add_subdirectory(amp)

W
wopeizl 已提交
41
add_subdirectory(reader)
T
typhoonzero 已提交
42

W
Wu Yi 已提交
43 44
if (NOT WIN32)
    add_subdirectory(nccl)
S
sneaxiy 已提交
45 46
endif()

47
if (WITH_GPU AND TENSORRT_FOUND)
W
Wu Yi 已提交
48
    add_subdirectory(tensorrt)
49
endif()
50

D
denglin-github 已提交
51 52 53 54
if (WITH_DLNNE)
    add_subdirectory(dlnne)
endif()

石晓伟 已提交
55 56 57 58
if (WITH_LITE)
    add_subdirectory(lite)
endif()

F
fwenguang 已提交
59 60 61 62
if (WITH_MLU)
    add_subdirectory(mlu)
endif()

63 64 65 66
if(WITH_CINN)
    add_subdirectory(cinn)
endif()

A
Allen Guo 已提交
67 68 69 70
if(WITH_IPU)
    add_subdirectory(ipu)
endif()

W
Wilber 已提交
71
SET(OP_HEADER_DEPS xxhash executor)
石晓伟 已提交
72

73
if (WITH_GPU)
74 75 76
    if (${CMAKE_CUDA_COMPILER_VERSION} LESS 11.0)
        SET(OP_HEADER_DEPS ${OP_HEADER_DEPS} cub)
    endif()
77 78
endif()

79 80 81 82
if (WITH_POCKETFFT)
    SET(OP_HEADER_DEPS ${OP_HEADER_DEPS} pocketfft)
endif()

83

A
Aurelius84 已提交
84
SET(OP_MKL_DEPS "")
85
if (NOT WITH_MKL OR NOT WITH_AVX)
A
Aurelius84 已提交
86 87 88
    SET(OP_MKL_DEPS ${OP_MKL_DEPS} match_matrix_tensor_op)
    SET(OP_MKL_DEPS ${OP_MKL_DEPS} var_conv_2d_op)
endif()
89
if(WITH_COVERAGE OR WIN32 OR WITH_NV_JETSON)
A
Aurelius84 已提交
90
    SET(OP_MKL_DEPS ${OP_MKL_DEPS} pyramid_hash_op)
K
Kevin 已提交
91 92
endif()

93 94 95 96 97
if(WITH_UNITY_BUILD)
    # Load Unity Build rules for operators in paddle/fluid/operators.
    include(unity_build_rule.cmake)
endif()

98 99 100 101 102 103
if (WITH_ROCM)
    hip_library(gather_scatter_kernel SRCS gather_scatter_kernel.cc gather_scatter_kernel.cu DEPS tensor)
else()
    cc_library(gather_scatter_kernel SRCS gather_scatter_kernel.cc gather_scatter_kernel.cu DEPS tensor)
endif()

104
set(OP_HEADER_DEPS ${OP_HEADER_DEPS} phi phi_api_utils gather_scatter_kernel)
105

106
register_operators(EXCLUDES py_layer_op py_func_op warpctc_op dgc_op load_combine_op lstm_op run_program_op eye_op quantize_linear_op
107
        recurrent_op save_combine_op sparse_attention_op sync_batch_norm_op spectral_op ${OP_MKL_DEPS} DEPS ${OP_HEADER_DEPS})
武毅 已提交
108

T
tangwei12 已提交
109
op_library(run_program_op SRCS run_program_op.cc run_program_op.cu.cc DEPS executor_cache ${OP_HEADER_DEPS})
110
target_link_libraries(run_program_op cuda_graph_with_memory_pool)
111
op_library(quantize_linear_op DEPS phi)
S
Steffy-zxf 已提交
112 113
op_library(save_combine_op DEPS string_array)
op_library(load_combine_op DEPS string_array)
114

115 116
if (WITH_GPU OR WITH_ROCM)
    if(WITH_ROCM)
0
0x45f 已提交
117
        op_library(warpctc_op DEPS dynload_warpctc sequence_padding sequence_scale SRCS warpctc_op.cc)
Q
qingqing01 已提交
118
    # warpctc_op needs cudnn 7 above
119
    elseif(${CUDNN_MAJOR_VERSION} VERSION_LESS 7)
0
0x45f 已提交
120
        op_library(warpctc_op DEPS dynload_warpctc sequence_padding sequence_scale SRCS warpctc_op.cc)
W
Wu Yi 已提交
121 122
    else()
        op_library(warpctc_op DEPS dynload_warpctc sequence_padding sequence_scale)
W
Wu Yi 已提交
123
    endif()
124
    op_library(sync_batch_norm_op)
125
    if ((NOT WIN32) AND (NOT WITH_ROCM) AND (NOT PADDLE_WITH_ARM) AND (NOT ${CMAKE_CUDA_COMPILER_VERSION} VERSION_LESS 11.3) )
126 127
        op_library(sparse_attention_op)
    endif()
W
Wu Yi 已提交
128 129
else()
    op_library(warpctc_op DEPS dynload_warpctc sequence_padding sequence_scale)
W
Wu Yi 已提交
130
endif()
T
tangwei12 已提交
131

132
if (WITH_GPU OR WITH_ROCM)
133 134 135 136 137 138
    if (MKL_FOUND AND WITH_ONEMKL)
        op_library(spectral_op SRCS spectral_op.cc spectral_op.cu DEPS dynload_cuda dynload_mklrt ${OP_HEADER_DEPS})
        target_include_directories(spectral_op PRIVATE ${MKL_INCLUDE})
    else()
        op_library(spectral_op SRCS spectral_op.cc spectral_op.cu DEPS dynload_cuda ${OP_HEADER_DEPS})
    endif()
139
else()
140 141 142 143 144 145
    if (MKL_FOUND AND WITH_ONEMKL)
        op_library(spectral_op SRCS spectral_op.cc DEPS dynload_mklrt ${OP_HEADER_DEPS})
        target_include_directories(spectral_op PRIVATE ${MKL_INCLUDE})
    else()
        op_library(spectral_op SRCS spectral_op.cc DEPS ${OP_HEADER_DEPS})
    endif()
146 147
endif()

148 149 150 151
if (WITH_ASCEND_CL)
  op_library(sync_batch_norm_op)
endif()

T
tangwei12 已提交
152 153 154
op_library(lstm_op DEPS ${OP_HEADER_DEPS}  lstm_compute)
op_library(eye_op DEPS ${OP_HEADER_DEPS})
op_library(recurrent_op DEPS ${OP_HEADER_DEPS})
155

156
set(COMMON_OP_DEPS ${OP_HEADER_DEPS})
157

G
gongweibao 已提交
158
if (WITH_DGC)
159 160 161 162
    op_library(dgc_op DEPS dgc)
    set(COMMON_OP_DEPS ${COMMON_OP_DEPS} dgc)
endif()

163
cc_library(common_infer_shape_functions SRCS common_infer_shape_functions.cc DEPS operator)
A
Aurelius84 已提交
164

165
set(COMMON_OP_DEPS ${COMMON_OP_DEPS} selected_rows_functor selected_rows_utils lapack_function
Y
yaoxuefeng 已提交
166
lod_tensor maxouting unpooling pooling lod_rank_table context_project
167
sequence_pooling executor device_memory_aligment generator)
P
peizhilin 已提交
168
set(COMMON_OP_DEPS ${COMMON_OP_DEPS} dynload_warpctc)
X
xuezhong 已提交
169
set(COMMON_OP_DEPS ${COMMON_OP_DEPS} sequence_padding sequence_scale cos_sim_functor memory jit_kernel_helper concat_and_split cross_entropy softmax vol2col im2col sampler sample_prob tree2col)
170
set(COMMON_OP_DEPS ${COMMON_OP_DEPS} sequence2batch lstm_compute matrix_bit_code gru_compute activation_functions beam_search fc_functor matrix_inverse matrix_solve)
Y
yaoxuefeng 已提交
171
set(COMMON_OP_DEPS ${COMMON_OP_DEPS} box_wrapper boost ps_gpu_wrapper)
172
set(COMMON_OP_DEPS ${COMMON_OP_DEPS} common_infer_shape_functions)
173
set(COMMON_OP_DEPS ${COMMON_OP_DEPS} eigen_function)
174
if (WITH_GPU OR WITH_ROCM)
175
  set(COMMON_OP_DEPS ${COMMON_OP_DEPS} depthwise_conv prelu bert_encoder_functor)
W
Wu Yi 已提交
176
endif()
177 178 179
if(WITH_XPU)
  set(COMMON_OP_DEPS ${COMMON_OP_DEPS} xpulib)
endif()
180
set(COMMON_OP_DEPS ${COMMON_OP_DEPS} device_memory_aligment)
181
set(COMMON_OP_DEPS ${COMMON_OP_DEPS} layer)
H
Huihuang Zheng 已提交
182
set(COMMON_OP_DEPS ${COMMON_OP_DEPS} tensor_formatter)
183
set(COMMON_OP_DEPS ${COMMON_OP_DEPS} op_version_registry)
184 185 186
if (WITH_ASCEND)
  set(COMMON_OP_DEPS ${COMMON_OP_DEPS} ascend_wrapper)
endif()
187

188
if (WITH_ASCEND_CL)
189
  cc_test(assign_op_npu_test SRCS assign_op_npu_test.cc DEPS assign_op)
190 191 192
  set(COMMON_OP_DEPS ${COMMON_OP_DEPS} npu_op_runner)
endif()

W
Wu Yi 已提交
193 194 195 196 197 198 199 200
# FIXME(typhoonzero): operator deps may not needed.
# op_library(lod_tensor_to_array_op DEPS lod_rank_table_op)
# op_library(array_to_lod_tensor_op DEPS lod_rank_table_op)
# op_library(unsqueeze_op DEPS reshape_op)
# op_library(squeeze_op DEPS reshape_op)
# op_library(flatten_op DEPS reshape_op)
# op_library(unstack_op DEPS stack_op)
# op_library(tensor_array_to_tensor_op DEPS concat_op)
B
baiyf 已提交
201

W
Wu Yi 已提交
202 203
set(OPERATOR_DEPS ${OPERATOR_DEPS} ${COMMON_OP_DEPS})
set(GLOB_OPERATOR_DEPS ${OPERATOR_DEPS} CACHE INTERNAL "Global Op dependencies")
L
Luo Tao 已提交
204

205
cc_test(test_common_infer_shape_functions SRCS test_common_infer_shape_functions.cc DEPS common_infer_shape_functions ${COMMON_OP_DEPS} activation_op elementwise_add_op softmax_op softmax)
206
cc_test(gather_test SRCS gather_test.cc DEPS tensor)
207
cc_test(assign_op_test SRCS assign_op_test.cc DEPS assign_op)
Y
Yu Yang 已提交
208
cc_test(scatter_test SRCS scatter_test.cc DEPS tensor math_function)
Q
Qiao Longfei 已提交
209
cc_test(beam_search_decode_op_test SRCS beam_search_decode_op_test.cc DEPS lod_tensor)
Y
Yi Wang 已提交
210
cc_test(strided_memcpy_test SRCS strided_memcpy_test.cc DEPS tensor memory)
Y
Yu Yang 已提交
211
cc_test(save_load_op_test SRCS save_load_op_test.cc DEPS save_op load_op)
212
cc_test(save_load_combine_op_test SRCS save_load_combine_op_test.cc DEPS save_combine_op load_combine_op)
Z
Zeng Jinle 已提交
213
if (WITH_GPU)
214
    nv_test(dropout_op_test SRCS dropout_op_test.cc DEPS dropout_op tensor generator)
Z
Zeng Jinle 已提交
215
    nv_test(test_leaky_relu_grad_grad_functor SRCS test_leaky_relu_grad_grad_functor.cc test_leaky_relu_grad_grad_functor.cu DEPS tensor device_context eigen3)
216
    nv_test(feed_forward_test SRCS feed_forward_test.cu DEPS elementwise_add_op matmul_op tensor generator)
217 218 219
elseif(WITH_ROCM)
    hip_test(dropout_op_test SRCS dropout_op_test.cc DEPS dropout_op tensor generator)
    hip_test(test_leaky_relu_grad_grad_functor SRCS test_leaky_relu_grad_grad_functor.cc test_leaky_relu_grad_grad_functor.cu DEPS tensor device_context eigen3)
Z
Zeng Jinle 已提交
220 221 222
else()
    cc_test(test_leaky_relu_grad_grad_functor SRCS test_leaky_relu_grad_grad_functor.cc DEPS tensor device_context eigen3)
endif()
223
cc_test(share_buffer_op_cpp_test SRCS share_buffer_op_test.cc DEPS lod_tensor device_context share_buffer_op)
224

H
Huihuang Zheng 已提交
225
cc_library(tensor_formatter SRCS tensor_formatter.cc DEPS ${OP_HEADER_DEPS})
S
sneaxiy 已提交
226 227
if (WITH_PYTHON)
  cc_library(py_func_op SRCS py_func_op.cc DEPS op_registry python pybind)
228
  cc_library(py_layer_op SRCS py_layer_op.cc DEPS op_registry python pybind)
S
sneaxiy 已提交
229 230
endif()

231 232
if (WITH_ASCEND_CL)
  cc_test(range_op_npu_test SRCS range_op_npu_test.cc DEPS op_registry range_op scope device_context enforce executor)
233
  cc_test(expand_op_npu_test SRCS expand_op_npu_test.cc DEPS op_registry expand_op eigen_function scope device_context enforce executor compare_op)
234 235
endif()

W
Wu Yi 已提交
236
set(GLOB_OP_LIB ${OP_LIBRARY} CACHE INTERNAL "Global OP library")
237
add_subdirectory(benchmark)
238 239

cc_test(op_debug_string_test SRCS op_debug_string_test.cc DEPS elementwise_add_op)
240 241 242 243
if (WITH_ASCEND_CL)
    cc_test(transpose_op_npu_test SRCS transpose_op_npu_test.cc DEPS op_registry transpose_op scope device_context enforce executor)
endif()

244 245 246

if(WITH_MKLDNN)
include(mkldnn/inplace_op_tests.cmake)
247
include(mkldnn/caching_tests.cmake)
J
Jacek Czaja 已提交
248
include(mkldnn/nhwc_op_tests.cmake)
249
endif()
250 251 252 253 254

if(WITH_UNITY_BUILD)
    # Using Unity Build to compile operators, `register_operator` will cause
    # the unity library to lose some symbols.
    # The specified link dependency needs to be displayed here.
T
tangwei12 已提交
255
    target_link_libraries(paddle_operators_unity ${OP_HEADER_DEPS} ${COMMON_OP_DEPS})
256
endif()
257 258 259 260

if(WITH_ASCEND_CL)
cc_test(gelu_op_npu_test SRCS gelu_op_npu_test.cc DEPS op_registry gelu_op scope device_context enforce executor)
endif()
B
Baibaifan 已提交
261 262 263 264

if (WITH_GPU OR WITH_ASCEND_CL)
cc_test(copy_cross_scope_test SRCS copy_cross_scope_test.cc DEPS op_registry copy_cross_scope_op scope device_context enforce executor)
endif()
265 266

copy_if_different(${pybind_file} ${pybind_file_final})