CMakeLists.txt 3.0 KB
Newer Older
D
dzhwinter 已提交
1
if (NOT WIN32)
2
add_subdirectory(detail)
D
dzhwinter 已提交
3
endif(NOT WIN32)
4

5 6 7 8 9 10
function(math_library TARGET)
    # math_library is a function to create math library. 
    # The interface is the same as cc_library. 
    # But it handle split GPU/CPU code and link some common library.
    set(cc_srcs)
    set(cu_srcs)
11
    set(hip_srcs)
L
Luo Tao 已提交
12
    set(math_common_deps device_context framework_proto)
13
    set(multiValueArgs DEPS)
14 15 16 17 18 19 20 21 22
    cmake_parse_arguments(math_library "${options}" "${oneValueArgs}"
            "${multiValueArgs}" ${ARGN})

    if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${TARGET}.cc)
        list(APPEND cc_srcs ${TARGET}.cc)
    endif()
    if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${TARGET}.cu)
        list(APPEND cu_srcs ${TARGET}.cu)
    endif()
23 24 25
    if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${TARGET}.hip.cu)
        list(APPEND hip_srcs ${TARGET}.hip.cu)
    endif()
26

27
    list(LENGTH cc_srcs cc_srcs_len)
28 29
    if (WITH_GPU)
        nv_library(${TARGET} SRCS ${cc_srcs} ${cu_srcs} DEPS ${math_library_DEPS} ${math_common_deps})
30 31
    elseif (WITH_AMD_GPU)
        hip_library(${TARGET} SRCS ${cc_srcs} ${hip_srcs} DEPS ${math_library_DEPS} ${math_common_deps})
32
    elseif(${cc_srcs_len} GREATER 0)
33 34 35 36
        cc_library(${TARGET} SRCS ${cc_srcs} DEPS ${math_library_DEPS} ${math_common_deps})
    endif()
endfunction()

37 38 39
# please add new math_library in alphabetical order
math_library(concat)
math_library(context_project DEPS im2col math_function)
40
math_library(cross_entropy)
41 42 43
math_library(cos_sim_functor)
math_library(depthwise_conv)
math_library(im2col)
D
dzhwinter 已提交
44 45 46

if (NOT WIN32) # windows do not support avx functions yet.
math_library(gru_compute DEPS activation_functions math_function)
47
math_library(lstm_compute DEPS activation_functions)
T
tensor-tang 已提交
48 49
# TODO(TJ): ugly workaround, clean me
cc_library(cpu_lstm_compute SRCS cpu_lstm_compute.cc DEPS activation_functions cblas)
D
dzhwinter 已提交
50 51
endif (NOT WIN32)

52
cc_library(blas SRCS blas.cc DEPS cblas framework_proto device_context)
Y
Yu Yang 已提交
53
math_library(math_function DEPS blas)
54
math_library(maxouting)
55
math_library(pooling)
56
math_library(selected_rows_functor DEPS selected_rows math_function)
57 58
math_library(sequence2batch)
math_library(sequence_padding)
59
math_library(sequence_pooling DEPS math_function)
60
math_library(sequence_scale)
61
math_library(softmax DEPS math_function)
D
dzhwinter 已提交
62
if (NOT WIN32)
W
weixing02 已提交
63
math_library(matrix_bit_code)
D
dzhwinter 已提交
64
endif (NOT WIN32)
65
math_library(unpooling)
66
math_library(vol2col)
Q
qijun 已提交
67

68
cc_test(math_function_test SRCS math_function_test.cc DEPS math_function)
69
cc_test(selected_rows_functor_test SRCS selected_rows_functor_test.cc DEPS selected_rows_functor)
70 71
cc_test(im2col_test SRCS im2col_test.cc DEPS im2col)
cc_test(vol2col_test SRCS vol2col_test.cc DEPS vol2col)
Y
Yiqun Liu 已提交
72
cc_test(sequence_padding_test SRCS sequence_padding_test.cc DEPS sequence_padding)
73
if(WITH_GPU)
74 75
    nv_test(math_function_gpu_test SRCS math_function_test.cu DEPS math_function)
    nv_test(selected_rows_functor_gpu_test SRCS selected_rows_functor_test.cu DEPS selected_rows_functor math_function)
76
endif()
77
cc_test(concat_test SRCS concat_test.cc DEPS concat)
T
tensor-tang 已提交
78
cc_test(cpu_vec_test SRCS cpu_vec_test.cc DEPS blas cpu_info)