CMakeLists.txt 1.2 KB
Newer Older
H
hedaoyuan 已提交
1 2
file(GLOB h_files . *Op.h)
file(GLOB cpp_files . *Op.cpp)
3 4 5

list(APPEND h_files Function.h)
list(APPEND cpp_files Function.cpp)
6
list(APPEND cpp_files BufferArg.cpp)
7 8

if(WITH_GPU)
H
hedaoyuan 已提交
9
    file(GLOB cu_files . *OpGpu.cu)
10
    cuda_compile(cu_objs ${cu_files})
H
hedaoyuan 已提交
11 12
endif()

13
add_library(paddle_function STATIC ${cpp_files} ${cu_objs})
14
add_dependencies(paddle_function ${external_project_dependencies})
15
add_dependencies(paddle_function gen_proto_cpp)
16

H
hedaoyuan 已提交
17
if(WITH_TESTING)
18
if(WITH_GPU)
19
    # TODO:
H
hedaoyuan 已提交
20
    # file(GLOB test_files . *OpTest.cpp)
21
    # add_executable(${test_bin} EXCLUDE_FROM_ALL ${test_files})
H
hedaoyuan 已提交
22
    add_simple_unittest(CrossMapNormalOpTest)
23 24 25
    add_simple_unittest(TensorShapeTest)
    add_simple_unittest(TensorTypeTest)
    add_simple_unittest(BufferArgTest)
H
hedaoyuan 已提交
26
    add_simple_unittest(FunctionTest)
27
    add_simple_unittest(ContextProjectionOpTest)
D
dangqingqing 已提交
28
    add_simple_unittest(PadOpTest)
29
    add_simple_unittest(MulOpTest)
30
    add_simple_unittest(CosSimOpTest)
D
dangqingqing 已提交
31
    add_simple_unittest(RowConvOpTest)
32
endif()
33 34

add_simple_unittest(ConvOpTest)
H
hedaoyuan 已提交
35
endif()
36 37 38 39 40 41

add_style_check_target(paddle_function ${h_files})
add_style_check_target(paddle_function ${cpp_files})
if(WITH_GPU)
    add_style_check_target(paddle_function ${cu_files})
endif()