CMakeLists.txt 9.9 KB
Newer Older
L
Luo Tao 已提交
1 2
file(GLOB GENERAL_OPS RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "*_op.cc")
string(REPLACE ".cc" "" GENERAL_OPS "${GENERAL_OPS}")
3
set(DEPS_OPS "")
L
Luo Tao 已提交
4 5
set(pybind_file ${PADDLE_SOURCE_DIR}/paddle/pybind/pybind.h)
file(WRITE ${pybind_file} "// Generated by the paddle/operator/CMakeLists.txt.  DO NOT EDIT!\n\n")
Y
Yu Yang 已提交
6 7 8 9
function(op_library TARGET)
    # op_library is a function to create op library. The interface is same as
    # cc_library. But it handle split GPU/CPU code and link some common library
    # for ops.
L
Luo Tao 已提交
10
    set(OP_LIBRARY ${TARGET} ${OP_LIBRARY} PARENT_SCOPE)
Y
Yu Yang 已提交
11 12
    set(cc_srcs)
    set(cu_srcs)
13
    set(cu_cc_srcs)
Y
update  
Yancey1989 已提交
14
    set(op_common_deps operator op_registry math_function)
Y
Yu Yang 已提交
15 16 17
    set(options "")
    set(oneValueArgs "")
    set(multiValueArgs SRCS DEPS)
L
Luo Tao 已提交
18
    set(pybind_flag 0)
Y
Yu Yang 已提交
19 20 21
    cmake_parse_arguments(op_library "${options}" "${oneValueArgs}"
            "${multiValueArgs}" ${ARGN})

22 23 24 25
    list(LENGTH op_library_SRCS op_library_SRCS_len)
    if (${op_library_SRCS_len} EQUAL 0)
        if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${TARGET}.cc)
            list(APPEND cc_srcs ${TARGET}.cc)
Y
Yu Yang 已提交
26
        endif()
27 28 29
        if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${TARGET}.cu.cc)
            list(APPEND cu_cc_srcs ${TARGET}.cu.cc)
        endif()
30
        if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${TARGET}.cu)
31
            list(APPEND cu_srcs ${TARGET}.cu)
32 33 34 35 36
        endif()
    else()
        foreach(src ${op_library_SRCS})
            if (${src} MATCHES ".*\\.cu$")
                list(APPEND cu_srcs ${src})
37 38
            elseif(${src} MATCHES ".*\\.cu.cc$")
                list(APPEND cu_cc_srcs ${src})
39 40 41 42 43 44 45
            elseif(${src} MATCHES ".*\\.cc$")
                list(APPEND cc_srcs ${src})
            else()
                message(FATAL_ERROR "${TARGET} Source file ${src} should only be .cc or .cu")
            endif()
        endforeach()
    endif()
Y
Yu Yang 已提交
46 47 48 49 50 51

    list(LENGTH cc_srcs cc_srcs_len)
    if (${cc_srcs_len} EQUAL 0)
        message(FATAL_ERROR "The op library ${TARGET} should contains at least one .cc file")
    endif()

52 53 54 55
    list(LENGTH op_library_DEPS op_library_DEPS_len)
    if (${op_library_DEPS_len} GREATER 0)
        set(DEPS_OPS ${TARGET} ${DEPS_OPS} PARENT_SCOPE)
    endif()
Y
Yu Yang 已提交
56
    if (WITH_GPU)
57
        nv_library(${TARGET} SRCS ${cc_srcs} ${cu_cc_srcs} ${cu_srcs} DEPS ${op_library_DEPS}
Y
Yu Yang 已提交
58 59 60 61 62
                ${op_common_deps})
    else()
        cc_library(${TARGET} SRCS ${cc_srcs} DEPS ${op_library_DEPS}
                ${op_common_deps})
    endif()
L
Luo Tao 已提交
63 64 65

    # net_op doesn't need pybind
    if ("${TARGET}" STREQUAL "net_op")
L
Luo Tao 已提交
66
        set(pybind_flag 1)
L
Luo Tao 已提交
67 68
    endif()

C
chengduoZH 已提交
69 70 71 72 73 74 75 76 77 78 79 80
    if ("${TARGET}" STREQUAL "compare_op")
        set(pybind_flag 1)
        file(APPEND ${pybind_file} "USE_OP(less_than);\nUSE_OP(equal);\n")
    endif()

    # conv_op contains several operators
    if ("${TARGET}" STREQUAL "conv_op")
        set(pybind_flag 1)
        # It's enough to just adding one operator to pybind
        file(APPEND ${pybind_file} "USE_OP(conv2d);\n")
    endif()

武毅 已提交
81 82 83 84 85 86 87
    # conv_cudnn_op contains several operators
    if ("${TARGET}" STREQUAL "conv_cudnn_op")
        set(pybind_flag 1)
        # It's enough to just adding one operator to pybind
        file(APPEND ${pybind_file} "USE_OP(conv2d_cudnn);\n")
    endif()

C
chengduoZH 已提交
88
    # pool_op contains several operators
89 90 91 92 93 94
    if ("${TARGET}" STREQUAL "pool_op")
        set(pybind_flag 1)
        # It's enough to just adding one operator to pybind
        file(APPEND ${pybind_file} "USE_OP(pool2d);\n")
    endif()

C
chengduoZH 已提交
95 96
    # pool_cudnn_op contains several operators
    if ("${TARGET}" STREQUAL "pool_cudnn_op")
Y
Yu Yang 已提交
97
        set(pybind_flag 1)
C
chengduoZH 已提交
98 99
        # It's enough to just adding one operator to pybind
        file(APPEND ${pybind_file} "USE_OP(pool2d_cudnn);\n")
Y
Yu Yang 已提交
100 101
    endif()

102
    if ("${TARGET}" STREQUAL "logical_op")
C
chengduoZH 已提交
103
        set(pybind_flag 1)
104
        file(APPEND ${pybind_file} "USE_OP(logical_and);\n")
C
chengduoZH 已提交
105 106 107 108 109 110 111 112 113
    endif()

    # pool_with_index_op contains several operators
    if ("${TARGET}" STREQUAL "pool_with_index_op")
        set(pybind_flag 1)
        # It's enough to just adding one operator to pybind
        file(APPEND ${pybind_file} "USE_OP(max_pool2d_with_index);\n")
    endif()

C
chengduoZH 已提交
114 115
    # conv_transpose_op contains several operators
    if ("${TARGET}" STREQUAL "conv_transpose_op")
C
chengduoZH 已提交
116 117
        set(pybind_flag 1)
        # It's enough to just adding one operator to pybind
C
chengduoZH 已提交
118
        file(APPEND ${pybind_file} "USE_OP(conv2d_transpose);\n")
C
chengduoZH 已提交
119
    endif()
C
chengduoZH 已提交
120 121 122

    # conv_transpose_cudnn_op contains two operators
    if ("${TARGET}" STREQUAL "conv_transpose_cudnn_op")
C
chengduoZH 已提交
123 124
        set(pybind_flag 1)
        # It's enough to just adding one operator to pybind
C
chengduoZH 已提交
125
        file(APPEND ${pybind_file} "USE_OP(conv2d_transpose_cudnn);\n")
C
chengduoZH 已提交
126 127
    endif()

128 129 130 131 132 133 134
    # save_restore_op contains several operators
    if ("${TARGET}" STREQUAL "save_restore_op")
        set(pybind_flag 1)
        # It's enough to just adding one operator to pybind
        file(APPEND ${pybind_file} "USE_NO_KERNEL_OP(save);\n")
    endif()

Q
qijun 已提交
135 136 137 138 139 140
    # activation_op contains several operators
    if ("${TARGET}" STREQUAL "activation_op")
        set(pybind_flag 1)
        # It's enough to just adding one operator to pybind
        file(APPEND ${pybind_file} "USE_OP(sigmoid);\n")
    endif()
Y
Yu Yang 已提交
141

D
Dong Zhihong 已提交
142 143 144 145
    # nccl_op contains several operators
    if ("${TARGET}" STREQUAL "nccl_op")
        set(pybind_flag 1)
        # It's enough to just adding one operator to pybind
Q
QI JUN 已提交
146
        file(APPEND ${pybind_file} "USE_CUDA_ONLY_OP(ncclAllReduce);\n")
D
Dong Zhihong 已提交
147
    endif()
W
wanghaox 已提交
148

G
guosheng 已提交
149 150 151 152 153 154
    # reduce_op contains several operators
    if ("${TARGET}" STREQUAL "reduce_op")
        set(pybind_flag 1)
        # It's enough to just adding one operator to pybind
        file(APPEND ${pybind_file} "USE_OP(reduce_sum);\n")
    endif()
Q
qijun 已提交
155

Y
Yu Yang 已提交
156 157 158 159 160
    if ("${TARGET}" STREQUAL "tensor_array_read_write_op")
        set(pybind_flag 1)
        file(APPEND ${pybind_file} "USE_NO_KERNEL_OP(read_from_array);\nUSE_NO_KERNEL_OP(write_to_array);\n")
    endif()

L
Luo Tao 已提交
161
    # pybind USE_NO_KERNEL_OP
T
typhoonzero 已提交
162
    # HACK: if REGISTER_OP_CPU_KERNEL presents the operator must have kernel
L
Luo Tao 已提交
163
    file(READ ${TARGET}.cc TARGET_CONTENT)
T
typhoonzero 已提交
164
    string(REGEX MATCH "REGISTER_OP_CPU_KERNEL" regex_result "${TARGET_CONTENT}")
L
Luo Tao 已提交
165 166 167 168 169 170 171 172
    string(REPLACE "_op" "" TARGET "${TARGET}")
    if (${pybind_flag} EQUAL 0 AND regex_result STREQUAL "")
        file(APPEND ${pybind_file} "USE_NO_KERNEL_OP(${TARGET});\n")
        set(pybind_flag 1)
    endif()

    # pybind USE_CPU_ONLY_OP
    list(LENGTH cu_srcs cu_srcs_len)
173 174 175
    list(LENGTH cu_cc_srcs cu_cc_srcs_len)

    if (${pybind_flag} EQUAL 0 AND ${cu_srcs_len} EQUAL 0 AND ${cu_cc_srcs_len} EQUAL 0)
L
Luo Tao 已提交
176 177 178 179 180 181 182 183
        file(APPEND ${pybind_file} "USE_CPU_ONLY_OP(${TARGET});\n")
        set(pybind_flag 1)
    endif()

    # pybind USE_OP
    if (${pybind_flag} EQUAL 0)
        file(APPEND ${pybind_file} "USE_OP(${TARGET});\n")
    endif()
Y
Yu Yang 已提交
184 185
endfunction()

Q
qijun 已提交
186
add_subdirectory(math)
D
Dong Zhihong 已提交
187
add_subdirectory(nccl)
188

189
set(DEPS_OPS
190 191
    cond_op
    cross_entropy_op
Y
Yu Yang 已提交
192
    recurrent_op
Y
Yu Yang 已提交
193
    softmax_with_cross_entropy_op
194 195
    softmax_op
    sequence_softmax_op
C
chengduoZH 已提交
196 197
    sum_op
    pool_op
W
wanghaox 已提交
198
    maxout_op
S
sweetsky0901 已提交
199
    unpool_op
200
    pool_with_index_op
C
chengduoZH 已提交
201
    conv_op
202
    conv_transpose_op
D
Dong Zhihong 已提交
203
    nccl_op
C
chengduoZH 已提交
204
    sequence_conv_op
205
    sequence_pool_op
Y
Yu Yang 已提交
206
    lod_rank_table_op
207 208
    lod_tensor_to_array_op
    array_to_lod_tensor_op
F
fengjiayi 已提交
209
    max_sequence_len_op
G
guosheng 已提交
210
    lstm_op
Q
QI JUN 已提交
211 212
    gru_op
    adagrad_op
武毅 已提交
213 214 215 216
    sgd_op
    save_op
    load_op
    send_op
S
sweetsky0901 已提交
217 218
    recv_op
    detection_output_op)
L
Luo Tao 已提交
219 220 221 222 223
if(WITH_GPU)
    op_library(nccl_op DEPS nccl_common)
else()
    set(DEPS_OPS ${DEPS_OPS} nccl_op)
endif()
Q
QI JUN 已提交
224

T
typhoonzero 已提交
225
if(WITH_DISTRIBUTE)
226 227 228 229 230 231 232 233 234 235
    add_subdirectory(detail)
    set(DISTRIBUTE_DEPS sendrecvop_grpc grpc++_unsecure grpc_unsecure gpr cares zlib_target protobuf)
    set(DISTRIBUTE_COMPILE_FLAGS "-Wno-non-virtual-dtor -Wno-error=non-virtual-dtor -Wno-error=delete-non-virtual-dtor")
    op_library(send_op DEPS ${DISTRIBUTE_DEPS})
    set_source_files_properties(send_op.cc PROPERTIES COMPILE_FLAGS ${DISTRIBUTE_COMPILE_FLAGS})
    op_library(recv_op DEPS ${DISTRIBUTE_DEPS})
    set_source_files_properties(recv_op.cc PROPERTIES COMPILE_FLAGS ${DISTRIBUTE_COMPILE_FLAGS})
    cc_test(test_send_recv SRCS send_recv_op_test.cc DEPS send_op recv_op sum_op executor)
else()
    set(DEPS_OPS ${DEPS_OPS} send_op recv_op)
T
typhoonzero 已提交
236 237
endif()

238
op_library(cond_op DEPS framework_proto tensor net_op)
239 240
op_library(cross_entropy_op DEPS cross_entropy)
op_library(softmax_with_cross_entropy_op DEPS cross_entropy softmax)
241
op_library(softmax_op DEPS softmax)
S
sweetsky0901 已提交
242
op_library(detection_output_op DEPS softmax)
243
op_library(sequence_softmax_op DEPS softmax)
Q
QI JUN 已提交
244 245 246
op_library(sum_op DEPS selected_rows_functor)
op_library(sgd_op DEPS selected_rows_functor)
op_library(adagrad_op DEPS selected_rows_functor)
C
chengduoZH 已提交
247
op_library(conv_op DEPS vol2col)
C
chengduoZH 已提交
248
op_library(pool_op DEPS pooling)
W
wanghaox 已提交
249
op_library(maxout_op DEPS maxouting)
S
sweetsky0901 已提交
250
op_library(unpool_op DEPS unpooling)
C
chengduoZH 已提交
251
op_library(pool_with_index_op DEPS pooling)
252 253 254 255
op_library(lod_rank_table_op DEPS lod_rank_table)
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(max_sequence_len_op DEPS lod_rank_table)
C
chengduoZH 已提交
256
op_library(sequence_conv_op DEPS context_project)
257
op_library(sequence_pool_op DEPS sequence_pooling)
D
dangqingqing 已提交
258
op_library(lstm_op DEPS sequence2batch lstm_compute)
C
chengduoZH 已提交
259
op_library(conv_transpose_op DEPS vol2col)
G
guosheng 已提交
260
op_library(gru_op DEPS sequence2batch gru_compute)
261
op_library(recurrent_op DEPS executor)
武毅 已提交
262 263 264 265
# FIXME(typhoonzero): save/load depends lodtensor serialization functions
op_library(save_op DEPS lod_tensor)
op_library(load_op DEPS lod_tensor)

266
list(REMOVE_ITEM GENERAL_OPS ${DEPS_OPS})
L
Luo Tao 已提交
267
foreach(src ${GENERAL_OPS})
268
    op_library(${src})
L
Luo Tao 已提交
269 270 271 272
endforeach()

set(GLOB_OP_LIB ${OP_LIBRARY} CACHE INTERNAL "Global OP library")

武毅 已提交
273

274 275 276
cc_test(gather_test SRCS gather_test.cc DEPS tensor)
cc_test(net_op_test SRCS net_op_test.cc DEPS net_op)
cc_test(scatter_test SRCS scatter_test.cc DEPS tensor)
Q
Qiao Longfei 已提交
277
cc_test(beam_search_decode_op_test SRCS beam_search_decode_op_test.cc DEPS lod_tensor)
278
cc_test(strided_memcpy_test SRCS strided_memcpy_test.cc DEPS tensor paddle_memory)
D
Dong Zhihong 已提交
279
if(WITH_GPU)
280
    cc_test(nccl_op_test SRCS nccl_op_test.cu.cc DEPS nccl_op gpu_info device_context)
D
Dong Zhihong 已提交
281
endif()
Y
Yu Yang 已提交
282
cc_test(save_load_op_test SRCS save_load_op_test.cc DEPS save_op load_op)