CMakeLists.txt 5.4 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}")
L
Luo Tao 已提交
3 4
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 已提交
5 6 7 8
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 已提交
9
    set(OP_LIBRARY ${TARGET} ${OP_LIBRARY} PARENT_SCOPE)
Y
Yu Yang 已提交
10 11
    set(cc_srcs)
    set(cu_srcs)
Y
update  
Yancey1989 已提交
12
    set(op_common_deps operator op_registry math_function)
Y
Yu Yang 已提交
13 14 15
    set(options "")
    set(oneValueArgs "")
    set(multiValueArgs SRCS DEPS)
L
Luo Tao 已提交
16
    set(pybind_flag 0)
Y
Yu Yang 已提交
17 18 19
    cmake_parse_arguments(op_library "${options}" "${oneValueArgs}"
            "${multiValueArgs}" ${ARGN})

20 21 22 23
    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 已提交
24
        endif()
25
        if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${TARGET}.cu)
26
            list(APPEND cu_srcs ${TARGET}.cu)
27 28 29 30 31 32 33 34 35 36 37 38
        endif()
    else()
        foreach(src ${op_library_SRCS})
            if (${src} MATCHES ".*\\.cu$")
                list(APPEND cu_srcs ${src})
            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 已提交
39 40 41 42 43 44 45 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()

    if (WITH_GPU)
        nv_library(${TARGET} SRCS ${cc_srcs} ${cu_srcs} DEPS ${op_library_DEPS}
                ${op_common_deps})
    else()
        cc_library(${TARGET} SRCS ${cc_srcs} DEPS ${op_library_DEPS}
                ${op_common_deps})
    endif()
L
Luo Tao 已提交
52 53 54

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

C
chengduoZH 已提交
58
    # pool_op contains several operators
59 60 61 62 63 64
    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 已提交
65 66 67 68 69 70 71
    # 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()

72 73 74 75 76 77 78
    # 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 已提交
79 80 81 82 83 84
    # 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 已提交
85

G
guosheng 已提交
86 87 88 89 90 91
    # 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 已提交
92

L
Luo Tao 已提交
93
    # pybind USE_NO_KERNEL_OP
T
typhoonzero 已提交
94
    # HACK: if REGISTER_OP_CPU_KERNEL presents the operator must have kernel
L
Luo Tao 已提交
95
    file(READ ${TARGET}.cc TARGET_CONTENT)
T
typhoonzero 已提交
96
    string(REGEX MATCH "REGISTER_OP_CPU_KERNEL" regex_result "${TARGET_CONTENT}")
L
Luo Tao 已提交
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
    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)
    if (${pybind_flag} EQUAL 0 AND ${cu_srcs_len} EQUAL 0)
        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 已提交
114 115
endfunction()

Q
qijun 已提交
116
add_subdirectory(math)
117

118
set(DEPS_OPS
Z
zchen0211 已提交
119
    recurrent_op
120 121
    cond_op
    cross_entropy_op
Y
Yu Yang 已提交
122
    softmax_with_cross_entropy_op
C
chengduoZH 已提交
123 124
    sum_op
    pool_op
125
    pool_with_index_op
C
chengduoZH 已提交
126
    sequence_conv_op
127
    lstm_op)
Y
Yu Yang 已提交
128 129


130
op_library(recurrent_op SRCS recurrent_op.cc rnn/recurrent_op_utils.cc
L
Luo Tao 已提交
131
  DEPS framework_proto tensor net_op)
Z
cond op  
zchen0211 已提交
132
op_library(cond_op SRCS cond_op.cc DEPS framework_proto tensor operator net_op)
133 134
op_library(cross_entropy_op DEPS cross_entropy)
op_library(softmax_with_cross_entropy_op DEPS cross_entropy softmax)
Y
Yu Yang 已提交
135
op_library(sum_op DEPS net_op)
C
chengduoZH 已提交
136 137
op_library(pool_op DEPS pooling)
op_library(pool_with_index_op DEPS pooling)
C
chengduoZH 已提交
138
op_library(sequence_conv_op DEPS context_project)
D
dangqingqing 已提交
139
op_library(lstm_op DEPS sequence2batch lstm_compute)
140

141
list(REMOVE_ITEM GENERAL_OPS ${DEPS_OPS})
L
Luo Tao 已提交
142
foreach(src ${GENERAL_OPS})
143
    op_library(${src})
L
Luo Tao 已提交
144 145 146 147
endforeach()

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

148 149 150
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)
151
cc_test(strided_memcpy_test SRCS strided_memcpy_test.cc DEPS tensor paddle_memory)
152
cc_test(dynamic_recurrent_op_test SRCS dynamic_recurrent_op_test.cc DEPS dynamic_recurrent_op recurrent_op tensor_array)
Y
Yu Yang 已提交
153
cc_test(save_load_op_test SRCS save_load_op_test.cc DEPS save_op load_op)