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

W
Wu Yi 已提交
3 4 5 6 7
# clean cache and pybind_file content first when rebuild
unset(GLOB_OP_LIB CACHE)
unset(OP_LIBRARY CACHE)
set(pybind_file ${PADDLE_BINARY_DIR}/paddle/fluid/pybind/pybind.h CACHE INTERNAL "pybind.h file")
file(WRITE ${pybind_file} "// Generated by the paddle/fluid/operator/CMakeLists.txt.  DO NOT EDIT!\n\n")
Y
Yu Yang 已提交
8

Q
qijun 已提交
9
add_subdirectory(math)
W
Wu Yi 已提交
10 11 12 13 14
add_subdirectory(controlflow)
add_subdirectory(detection)
add_subdirectory(elementwise)
add_subdirectory(fused)
add_subdirectory(metrics)
B
baojun 已提交
15
add_subdirectory(ngraph)
W
Wu Yi 已提交
16 17 18
add_subdirectory(optimizers)
add_subdirectory(reduce_ops)
add_subdirectory(sequence_ops)
T
tensor-tang 已提交
19
add_subdirectory(jit)
Q
QI JUN 已提交
20

T
typhoonzero 已提交
21
if(WITH_DISTRIBUTE)
22
    add_subdirectory(distributed)
W
Wu Yi 已提交
23
    add_subdirectory(distributed_ops)
24
    add_subdirectory(collective)
W
Wu Yi 已提交
25
endif()
26

W
wopeizl 已提交
27
add_subdirectory(reader)
T
typhoonzero 已提交
28

W
Wu Yi 已提交
29 30
if (NOT WIN32)
    add_subdirectory(nccl)
S
sneaxiy 已提交
31 32
endif()

33
if (WITH_GPU AND TENSORRT_FOUND)
W
Wu Yi 已提交
34
    add_subdirectory(tensorrt)
35
endif()
36

37
if (ANAKIN_SUBGRAPH) 
38 39 40
    add_subdirectory(anakin)
endif()

W
Wilber 已提交
41
SET(OP_HEADER_DEPS xxhash executor)
42 43 44 45
if (WITH_GPU)
    SET(OP_HEADER_DEPS ${OP_HEADER_DEPS} cub)
endif()

46 47 48 49 50
SET(OP_PREFETCH_DEPS "")
if (WITH_DISTRIBUTE)
    SET(OP_PREFETCH_DEPS ${OP_PREFETCH_DEPS} parameter_prefetch)
endif()

K
Kevin 已提交
51 52
SET(OP_ONLY_MKL "")
if (NOT WITH_MKL)
A
Aurelius84 已提交
53
    SET(OP_ONLY_MKL ${OP_ONLY_MKL} match_matrix_tensor_op)
K
Kevin 已提交
54 55 56
    SET(OP_ONLY_MKL ${OP_ONLY_MKL} var_conv_2d_op)
endif()

57
register_operators(EXCLUDES py_func_op warpctc_op dgc_op conv_fusion_op
58
	sync_batch_norm_op multihead_matmul_op ${OP_ONLY_MKL} DEPS ${OP_HEADER_DEPS} ${OP_PREFETCH_DEPS})
武毅 已提交
59

P
peizhilin 已提交
60
if (WITH_GPU)
Q
qingqing01 已提交
61
    # warpctc_op needs cudnn 7 above
W
Wu Yi 已提交
62 63
    if (${CUDNN_MAJOR_VERSION} VERSION_LESS 7)
        op_library(warpctc_op DEPS dynload_warpctc sequence_padding sequence_scale SRCS warpctc_op.cc warpctc_op.cu.cc)
W
Wu Yi 已提交
64 65
    else()
        op_library(warpctc_op DEPS dynload_warpctc sequence_padding sequence_scale)
W
Wu Yi 已提交
66
    endif()
D
Dang Qingqing 已提交
67
    # conv_fusion_op needs cudnn 7 above
P
peizhilin 已提交
68
    if (NOT ${CUDNN_VERSION} VERSION_LESS 7100)
D
Dang Qingqing 已提交
69 70 71
        op_library(conv_fusion_op)
        file(APPEND ${pybind_file} "USE_CUDA_ONLY_OP(conv2d_fusion);\n")
    endif()
Q
qingqing01 已提交
72 73 74 75
    if (NOT WIN32)
        op_library(sync_batch_norm_op)
        file(APPEND ${pybind_file} "USE_CUDA_ONLY_OP(sync_batch_norm);\n")
    endif()
76 77
    op_library(multihead_matmul_op)
    file(APPEND ${pybind_file} "USE_CUDA_ONLY_OP(multihead_matmul);\n")
W
Wu Yi 已提交
78 79
else()
    op_library(warpctc_op DEPS dynload_warpctc sequence_padding sequence_scale)
W
Wu Yi 已提交
80
endif()
81

82
set(COMMON_OP_DEPS ${OP_HEADER_DEPS})
83

G
gongweibao 已提交
84
if (WITH_DGC)
85 86 87 88 89
    op_library(dgc_op DEPS dgc)
    file(APPEND ${pybind_file} "USE_CUDA_ONLY_OP(dgc);\n")
    set(COMMON_OP_DEPS ${COMMON_OP_DEPS} dgc)
endif()

W
wopeizl 已提交
90
set(COMMON_OP_DEPS ${COMMON_OP_DEPS} selected_rows_functor selected_rows lod_tensor maxouting unpooling pooling lod_rank_table context_project sequence_pooling executor)
P
peizhilin 已提交
91
set(COMMON_OP_DEPS ${COMMON_OP_DEPS} dynload_warpctc)
X
xuezhong 已提交
92
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)
93
set(COMMON_OP_DEPS ${COMMON_OP_DEPS} sequence2batch lstm_compute matrix_bit_code gru_compute activation_functions beam_search fc)
H
hutuxian 已提交
94
set(COMMON_OP_DEPS ${COMMON_OP_DEPS} box_wrapper)
W
Wu Yi 已提交
95
if (WITH_GPU)
N
nhzlx 已提交
96
  set(COMMON_OP_DEPS ${COMMON_OP_DEPS} depthwise_conv prelu)
W
Wu Yi 已提交
97
endif()
98
set(COMMON_OP_DEPS ${COMMON_OP_DEPS} device_memory_aligment)
99

W
Wu Yi 已提交
100 101 102 103 104 105 106 107
# 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 已提交
108

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

112
cc_test(gather_test SRCS gather_test.cc DEPS tensor)
Y
Yu Yang 已提交
113
cc_test(scatter_test SRCS scatter_test.cc DEPS tensor math_function)
Q
Qiao Longfei 已提交
114
cc_test(beam_search_decode_op_test SRCS beam_search_decode_op_test.cc DEPS lod_tensor)
Y
Yi Wang 已提交
115
cc_test(strided_memcpy_test SRCS strided_memcpy_test.cc DEPS tensor memory)
Y
Yu Yang 已提交
116
cc_test(save_load_op_test SRCS save_load_op_test.cc DEPS save_op load_op)
117
cc_test(save_load_combine_op_test SRCS save_load_combine_op_test.cc DEPS save_combine_op load_combine_op)
G
gongweibao 已提交
118
nv_test(dropout_op_test SRCS dropout_op_test.cc DEPS dropout_op tensor)
Z
Zeng Jinle 已提交
119 120 121 122 123
if (WITH_GPU)
    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)
else()
    cc_test(test_leaky_relu_grad_grad_functor SRCS test_leaky_relu_grad_grad_functor.cc DEPS tensor device_context eigen3)
endif()
124

S
sneaxiy 已提交
125 126 127 128
if (WITH_PYTHON)
  cc_library(py_func_op SRCS py_func_op.cc DEPS op_registry python pybind)
endif()

W
Wu Yi 已提交
129
set(GLOB_OP_LIB ${OP_LIBRARY} CACHE INTERNAL "Global OP library")
130
add_subdirectory(benchmark)