CMakeLists.txt 826 字节
Newer Older
Z
zhangjinchao01 已提交
1 2 3 4 5
# unittest for common package

add_simple_unittest(test_ExecViaCpu)
add_simple_unittest(test_SIMDFunctions)
add_simple_unittest(test_matrix)
H
hedaoyuan 已提交
6
add_simple_unittest(test_TrainingAlgorithm)
Z
zhangjinchao01 已提交
7 8 9 10 11 12 13 14 15 16

# TODO(yuyang18): Refactor TestUtil.cpp. Remove this cross module reference.
add_unittest(test_matrixCompare
    test_matrixCompare.cpp
    ../../gserver/tests/TestUtil.cpp)

add_simple_unittest(test_sparseMatrixCompare)
add_simple_unittest(test_perturbation)
add_simple_unittest(test_CpuGpuVector)
add_simple_unittest(test_Allocator)
H
hedaoyuan 已提交
17 18 19 20 21 22 23 24 25 26 27
if(WITH_GPU)
    if(COMPILER_SUPPORT_CXX11)
        LIST(APPEND CUDA_NVCC_FLAGS -std=c++11)
        CUDA_ADD_EXECUTABLE(test_Tensor test_Tensor.cu)
        link_paddle_test(test_Tensor)
    endif()
else()
    compile_cu_as_cpp(test_Tensor.cu)
    add_unittest(test_Tensor test_Tensor.cu)
endif(WITH_GPU)