CMakeLists.txt 1.9 KB
Newer Older
L
liuruilong 已提交
1 2

# gen test
3
ADD_EXECUTABLE(test-conv-op  operators/test_cov_op.cpp test_helper.h  test_include.h framework/executor_for_test.h framework/executor_for_test.cpp)
L
liuruilong 已提交
4 5
target_link_libraries(test-conv-op paddle-mobile)

E
eclipsess 已提交
6 7 8 9 10 11 12 13
# gen test
ADD_EXECUTABLE(test-mul-op  operators/test_mul_op.cpp test_helper.h  test_include.h)
target_link_libraries(test-mul-op paddle-mobile)

# gen test
ADD_EXECUTABLE(test-elementwiseadd-op  operators/test_elementwise_add_op.cpp test_helper.h  test_include.h)
target_link_libraries(test-elementwiseadd-op paddle-mobile)

E
eclipsess 已提交
14 15 16
# gen test
ADD_EXECUTABLE(test-concat-op  operators/test_concat_op.cpp test_helper.h  test_include.h)
target_link_libraries(test-concat-op paddle-mobile)
E
eclipsess 已提交
17

E
eclipsess 已提交
18 19 20 21
# gen test
ADD_EXECUTABLE(test-lrn-op  operators/test_lrn_op.cpp test_helper.h  test_include.h)
target_link_libraries(test-lrn-op paddle-mobile)

E
eclipsess 已提交
22 23 24 25
# gen test
ADD_EXECUTABLE(test-batchnorm-op  operators/test_batchnorm_op.cpp test_helper.h  test_include.h)
target_link_libraries(test-batchnorm-op paddle-mobile)

E
eclipsess 已提交
26 27 28 29
# gen test
ADD_EXECUTABLE(test-priorbox-op  operators/test_prior_box_op.cpp test_helper.h  test_include.h)
target_link_libraries(test-priorbox-op paddle-mobile)

E
eclipsess 已提交
30 31 32 33
# gen test
ADD_EXECUTABLE(test-boxcoder-op  operators/test_box_coder_op.cpp test_helper.h  test_include.h)
target_link_libraries(test-boxcoder-op paddle-mobile)

L
liuruilong 已提交
34 35 36 37 38 39
# gen test log
ADD_EXECUTABLE(test-log common/test_log.cpp)
target_link_libraries(test-log paddle-mobile)

# gen test log
ADD_EXECUTABLE(test-load framework/test_load.cpp)
L
liuruilong 已提交
40 41 42
target_link_libraries(test-load paddle-mobile)

# gen test log
43
# gen test
L
liuruilong 已提交
44
ADD_EXECUTABLE(test-optimize framework/test_optimize.cpp)
L
liuruilong 已提交
45
target_link_libraries(test-optimize paddle-mobile)
46 47 48 49


#gen test
ADD_EXECUTABLE(test-pool operators/test_pool_op.cpp test_helper.h test_include.h framework/executor_for_test.h framework/executor_for_test.cpp)
Z
zhaojiaying01 已提交
50 51 52 53 54
target_link_libraries(test-pool paddle-mobile)

# gen test
ADD_EXECUTABLE(test-gemm common/test_gemm.cpp)
target_link_libraries(test-gemm paddle-mobile)