CMakeLists.txt 680 字节
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
if(COMPILER_SUPPORT_CXX11)
H
hedaoyuan 已提交
18
  LIST(APPEND CUDA_NVCC_FLAGS -std=c++11)
H
hedaoyuan 已提交
19 20 21
  CUDA_ADD_EXECUTABLE(test_Tensor test_Tensor.cu)
  link_paddle_test(test_Tensor)
endif()