CMakeLists.txt 12.4 KB
Newer Older
L
liuruilong 已提交
1 2
set(dir ${CMAKE_CURRENT_SOURCE_DIR})
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${dir}/build")
3
set(FOUND_MATCH OFF)
L
liuruilong 已提交
4

5 6 7 8 9 10
set(CON -1)

message(STATUS "nets :${NET}")

list(FIND NET "googlenet" CON)
if (CON GREATER -1)
11
    # gen test
12
    ADD_EXECUTABLE(test-googlenet net/test_googlenet.cpp test_helper.h test_include.h executor_for_test.h)
13
    target_link_libraries(test-googlenet paddle-mobile)
14 15 16 17 18 19 20

    set(FOUND_MATCH ON)

endif ()

list(FIND NET "mobilenet" CON)
if (CON GREATER -1)
21
    # gen test
22
    ADD_EXECUTABLE(test-mobilenet net/test_mobilenet.cpp test_helper.h test_include.h executor_for_test.h)
23
    target_link_libraries(test-mobilenet paddle-mobile)
24 25

    # gen test
26
    ADD_EXECUTABLE(test-mobilenet-combine net/test_mobilenet_combine.cpp test_helper.h test_include.h executor_for_test.h)
27
    target_link_libraries(test-mobilenet-combine paddle-mobile)
28 29 30
    set(FOUND_MATCH ON)

endif ()
31

32 33
list(FIND NET "yolo" CON)
if (CON GREATER -1)
34
    # gen test
35
    ADD_EXECUTABLE(test-yolo net/test_yolo.cpp test_helper.h test_include.h executor_for_test.h)
36
    target_link_libraries(test-yolo paddle-mobile)
xiebaiyuan's avatar
xiebaiyuan 已提交
37
    # gen test
38
    ADD_EXECUTABLE(test_yolo_combined net/test_yolo_combined.cpp test_helper.h test_include.h executor_for_test.h)
xiebaiyuan's avatar
xiebaiyuan 已提交
39
    target_link_libraries(test_yolo_combined paddle-mobile)
40 41 42 43 44 45
    set(FOUND_MATCH ON)

endif ()

list(FIND NET "squeezenet" CON)
if (CON GREATER -1)
46
    # gen test
47
    ADD_EXECUTABLE(test-squeezenet net/test_squeezenet.cpp test_helper.h test_include.h executor_for_test.h)
48
    target_link_libraries(test-squeezenet paddle-mobile)
49 50 51 52 53 54
    set(FOUND_MATCH ON)

endif ()

list(FIND NET "resnet" CON)
if (CON GREATER -1)
55
    # gen test
56
    ADD_EXECUTABLE(test-resnet net/test_resnet.cpp test_helper.h test_include.h executor_for_test.h)
57
    target_link_libraries(test-resnet paddle-mobile)
58 59 60 61 62 63 64
    set(FOUND_MATCH ON)

endif ()

list(FIND NET "FPGAnets" CON)
if (CON GREATER -1)
    ADD_EXECUTABLE(test-resnet net/test_resnet.cpp test_helper.h test_include.h executor_for_test.h)
Z
zhangyang 已提交
65 66
    target_link_libraries(test-resnet paddle-mobile)

67
    ADD_EXECUTABLE(test-resnet50 fpga/test_resnet50.cpp test_helper.h test_include.h executor_for_test.h)
Z
zhangyang 已提交
68 69
    target_link_libraries(test-resnet50 paddle-mobile)

70
    ADD_EXECUTABLE(test-fpga-EW fpga/test_fpga_EW.cpp test_helper.h test_include.h executor_for_test.h)
Z
zhangyang 已提交
71 72
    target_link_libraries(test-fpga-EW paddle-mobile)

73
    ADD_EXECUTABLE(test-fpga-conv fpga/test_fpga_conv.cpp test_helper.h test_include.h executor_for_test.h)
Z
zhangyang 已提交
74 75
    target_link_libraries(test-fpga-conv paddle-mobile)

76
    ADD_EXECUTABLE(test-fpga-pooling fpga/test_fpga_pooling.cpp test_helper.h test_include.h executor_for_test.h)
Z
zhangyang 已提交
77 78
    target_link_libraries(test-fpga-pooling paddle-mobile)

79
    ADD_EXECUTABLE(test-fpga-bypass fpga/test_fpga_bypass.cpp test_helper.h test_include.h executor_for_test.h)
Z
zhangyang 已提交
80 81
    target_link_libraries(test-fpga-bypass paddle-mobile)

82
    ADD_EXECUTABLE(test-fpga-softmax fpga/test_fpga_softmax.cpp test_helper.h test_include.h executor_for_test.h)
Z
zhangyang 已提交
83 84
    target_link_libraries(test-fpga-softmax paddle-mobile)

85
    ADD_EXECUTABLE(test-fpga-concat fpga/test_fpga_concat.cpp test_helper.h test_include.h executor_for_test.h)
Z
zhangyang 已提交
86 87
    target_link_libraries(test-fpga-concat paddle-mobile)

88
    ADD_EXECUTABLE(test-tensor-quant fpga/test_tensor_quant.cpp test_helper.h test_include.h executor_for_test.h)
C
chonwhite 已提交
89
    target_link_libraries(test-tensor-quant paddle-mobile)
90

91
    ADD_EXECUTABLE(test-fpga-concat-op fpga/test_concat_op.cpp test_helper.h test_include.h)
92
    target_link_libraries(test-fpga-concat-op paddle-mobile)
Z
zhangyang 已提交
93

94
    ADD_EXECUTABLE(test-format-data fpga/test_format_data.cpp test_helper.h test_include.h)
Z
zhangyang 已提交
95
    target_link_libraries(test-format-data paddle-mobile)
96 97 98 99 100 101
    set(FOUND_MATCH ON)

endif ()

list(FIND NET "mobilenetssd" CON)
if (CON GREATER -1)
102
    # gen test
103
    ADD_EXECUTABLE(test-mobilenetssd net/test_mobilenet+ssd.cpp test_helper.h test_include.h executor_for_test.h)
104
    target_link_libraries(test-mobilenetssd paddle-mobile)
105

106 107 108 109 110 111
    set(FOUND_MATCH ON)

endif ()

list(FIND NET "nlp" CON)
if (CON GREATER -1)
112
    # gen test
113
    ADD_EXECUTABLE(test-nlp net/test_nlp.cpp test_helper.h test_include.h executor_for_test.h)
114 115 116
    target_link_libraries(test-nlp paddle-mobile)

    # gen test
117
    ADD_EXECUTABLE(test-gru-op operators/test_gru_op.cpp test_helper.h test_include.h)
118
    target_link_libraries(test-gru-op paddle-mobile)
119 120 121 122 123 124
    set(FOUND_MATCH ON)

endif ()

list(FIND NET "mobilenetfssd" CON)
if (CON GREATER -1)
xiebaiyuan's avatar
xiebaiyuan 已提交
125
    # gen test
126
    ADD_EXECUTABLE(test-fssd net/test_mobilenet_025_fssd.cpp test_helper.h test_include.h)
xiebaiyuan's avatar
xiebaiyuan 已提交
127
    target_link_libraries(test-fssd paddle-mobile)
xiebaiyuan's avatar
xiebaiyuan 已提交
128

129 130 131 132 133 134
    set(FOUND_MATCH ON)

endif ()

list(FIND NET "genet" CON)
if (CON GREATER -1)
xiebaiyuan's avatar
xiebaiyuan 已提交
135
    # gen test
136
    ADD_EXECUTABLE(test-genet net/test_genet_combine.cpp test_helper.h test_include.h executor_for_test.h)
xiebaiyuan's avatar
xiebaiyuan 已提交
137
    target_link_libraries(test-genet paddle-mobile)
138 139 140
    set(FOUND_MATCH ON)

endif ()
L
liuruilong 已提交
141

142
if (NOT FOUND_MATCH)
L
liuruilong 已提交
143
    # gen test
144
    ADD_EXECUTABLE(test-resnet net/test_resnet.cpp test_helper.h test_include.h executor_for_test.h)
L
liuruilong 已提交
145 146 147
    target_link_libraries(test-resnet paddle-mobile)

    # gen test
148
    ADD_EXECUTABLE(test-squeezenet net/test_squeezenet.cpp test_helper.h test_include.h executor_for_test.h)
L
liuruilong 已提交
149 150 151
    target_link_libraries(test-squeezenet paddle-mobile)

    # gen test
152
    ADD_EXECUTABLE(test-yolo net/test_yolo.cpp test_helper.h test_include.h executor_for_test.h)
L
liuruilong 已提交
153 154
    target_link_libraries(test-yolo paddle-mobile)

xiebaiyuan's avatar
xiebaiyuan 已提交
155
    # gen test
156
    ADD_EXECUTABLE(test_yolo_combined net/test_yolo_combined.cpp test_helper.h test_include.h executor_for_test.h)
xiebaiyuan's avatar
xiebaiyuan 已提交
157 158
    target_link_libraries(test_yolo_combined paddle-mobile)

L
liuruilong 已提交
159
    # gen test
160
    ADD_EXECUTABLE(test-googlenet net/test_googlenet.cpp test_helper.h test_include.h executor_for_test.h)
L
liuruilong 已提交
161 162
    target_link_libraries(test-googlenet paddle-mobile)

163
    # gen test
164
    ADD_EXECUTABLE(test-conv-op operators/test_cov_op.cpp test_helper.h test_include.h executor_for_test.h)
165 166 167
    target_link_libraries(test-conv-op paddle-mobile)

    # gen test
168
    ADD_EXECUTABLE(test-mul-op operators/test_mul_op.cpp test_helper.h test_include.h)
169 170 171
    target_link_libraries(test-mul-op paddle-mobile)

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

    # gen test
176
    ADD_EXECUTABLE(test-concat-op operators/test_concat_op.cpp test_helper.h test_include.h)
177 178 179
    target_link_libraries(test-concat-op paddle-mobile)

    # gen test
180
    ADD_EXECUTABLE(test-lrn-op operators/test_lrn_op.cpp test_helper.h test_include.h)
181 182 183
    target_link_libraries(test-lrn-op paddle-mobile)

    # gen test
184
    ADD_EXECUTABLE(test-batchnorm-op operators/test_batchnorm_op.cpp test_helper.h test_include.h)
185 186 187
    target_link_libraries(test-batchnorm-op paddle-mobile)

    # gen test
188
    ADD_EXECUTABLE(test-priorbox-op operators/test_prior_box_op.cpp test_helper.h test_include.h)
189 190 191
    target_link_libraries(test-priorbox-op paddle-mobile)

    # gen test
192
    ADD_EXECUTABLE(test-boxcoder-op operators/test_box_coder_op.cpp test_helper.h test_include.h)
193 194 195
    target_link_libraries(test-boxcoder-op paddle-mobile)

    # gen test
196
    ADD_EXECUTABLE(test-transpose-op operators/test_transpose_op.cpp test_helper.h test_include.h)
197 198 199
    target_link_libraries(test-transpose-op paddle-mobile)

    # gen test
200
    ADD_EXECUTABLE(test-multiclassnms-op operators/test_multiclass_nms_op.cpp test_helper.h test_include.h)
201 202 203
    target_link_libraries(test-multiclassnms-op paddle-mobile)

    # gen test
204
    ADD_EXECUTABLE(test-reshape-op operators/test_reshape_op.cpp test_helper.h test_include.h)
205 206 207
    target_link_libraries(test-reshape-op paddle-mobile)

    # gen test
208
    ADD_EXECUTABLE(test-relu-op operators/test_relu_op.cpp test_helper.h test_include.h)
209 210 211
    target_link_libraries(test-relu-op paddle-mobile)

    # gen test
212
    ADD_EXECUTABLE(test-fc-op operators/test_fusion_fc_op.cpp test_helper.h test_include.h)
213 214
    target_link_libraries(test-fc-op paddle-mobile)

H
hjchen2 已提交
215 216 217 218 219 220 221 222
    # test quantize op
    ADD_EXECUTABLE(test-quantize-op operators/test_quantize_op.cpp test_helper.h test_include.h)
    target_link_libraries(test-quantize-op paddle-mobile)

    # test dequantize op
    ADD_EXECUTABLE(test-dequantize-op operators/test_dequantize_op.cpp test_helper.h test_include.h)
    target_link_libraries(test-dequantize-op paddle-mobile)

223 224 225 226 227 228 229 230
    # 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)
    target_link_libraries(test-load paddle-mobile)

231 232 233 234
    # gen test log
    ADD_EXECUTABLE(test-loadmemory framework/test_load_memory.cpp)
    target_link_libraries(test-loadmemory paddle-mobile)

N
nhzlx 已提交
235 236 237 238
    ADD_EXECUTABLE(test-inference-api framework/test_inference_api.cpp)
    target_link_libraries(test-inference-api paddle-mobile)


239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
    # gen test log
    # gen test
    ADD_EXECUTABLE(test-optimize framework/test_optimize.cpp)
    target_link_libraries(test-optimize paddle-mobile)


    #gen test
    ADD_EXECUTABLE(test-pool operators/test_pool_op.cpp test_helper.h test_include.h executor_for_test.h)
    target_link_libraries(test-pool paddle-mobile)

    #gen test
    ADD_EXECUTABLE(test-softmax operators/test_softmax_op.cpp test_helper.h test_include.h executor_for_test.h)
    target_link_libraries(test-softmax paddle-mobile)

    # gen test
254 255 256 257 258 259
    ADD_EXECUTABLE(test-gemm-accuracy common/test_gemm_accuracy.cpp)
    target_link_libraries(test-gemm-accuracy paddle-mobile)

    # gen test
    ADD_EXECUTABLE(test-gemm-perf common/test_gemm_perf.cpp)
    target_link_libraries(test-gemm-perf paddle-mobile)
W
wangliu 已提交
260

261 262 263
    # gen test
    ADD_EXECUTABLE(test-enforce common/test_enforce.cpp)
    target_link_libraries(test-enforce paddle-mobile)
L
liuruilong 已提交
264

D
dolphin8 已提交
265
    # gen test - test if openmp works
L
liuruilong 已提交
266
    ADD_EXECUTABLE(test-openmp common/test_openmp.cpp test_helper.h test_include.h executor_for_test.h)
D
dolphin8 已提交
267
    target_link_libraries(test-openmp paddle-mobile)
L
liuruilong 已提交
268

269
    # gen test
270
    ADD_EXECUTABLE(test-mobilenetssd net/test_mobilenet+ssd.cpp test_helper.h test_include.h executor_for_test.h)
271
    target_link_libraries(test-mobilenetssd paddle-mobile)
E
eclipsess 已提交
272

273 274
    # gen test
    ADD_EXECUTABLE(test-mobilenet-combine net/test_mobilenet_combine.cpp test_helper.h test_include.h executor_for_test.h)
275 276
    target_link_libraries(test-mobilenet-combine paddle-mobile)

277
    # gen test
278
    ADD_EXECUTABLE(test-genet net/test_genet_combine.cpp test_helper.h test_include.h executor_for_test.h)
279 280
    target_link_libraries(test-genet paddle-mobile)

281
    # gen test
282
    ADD_EXECUTABLE(test-sigmoid operators/test_sigmoid_op.cpp test_include.h)
283
    target_link_libraries(test-sigmoid paddle-mobile)
W
wangliu 已提交
284

285 286 287
    # gen test
    ADD_EXECUTABLE(test-depthwise-conv-op operators/test_depthwise_conv_op.cpp test_helper.h test_include.h executor_for_test.h)
    target_link_libraries(test-depthwise-conv-op paddle-mobile)
E
eclipsess 已提交
288

L
liuruilong 已提交
289
    # gen test
290
    ADD_EXECUTABLE(test-mobilenet net/test_mobilenet.cpp test_helper.h test_include.h executor_for_test.h)
L
liuruilong 已提交
291 292
    target_link_libraries(test-mobilenet paddle-mobile)

L
liuruilong 已提交
293
    # gen test
294
    ADD_EXECUTABLE(test-conv-add-relu-op operators/test_conv_add_relu_op.cpp test_helper.h test_include.h executor_for_test.h)
L
liuruilong 已提交
295 296
    target_link_libraries(test-conv-add-relu-op paddle-mobile)

297
    # gen test
298
    ADD_EXECUTABLE(test-conv-add-bn-relu-op operators/test_fusion_conv_add_bn_relu_op.cpp test_helper.h test_include.h executor_for_test.h)
299 300
    target_link_libraries(test-conv-add-bn-relu-op paddle-mobile)

xiebaiyuan's avatar
xiebaiyuan 已提交
301
    # gen test
302
    ADD_EXECUTABLE(test-nlp net/test_nlp.cpp test_helper.h test_include.h executor_for_test.h)
xiebaiyuan's avatar
xiebaiyuan 已提交
303 304 305
    target_link_libraries(test-nlp paddle-mobile)

    # gen test
306
    ADD_EXECUTABLE(test-gru-op operators/test_gru_op.cpp test_helper.h test_include.h)
xiebaiyuan's avatar
xiebaiyuan 已提交
307 308
    target_link_libraries(test-gru-op paddle-mobile)

Y
yangfei 已提交
309
    # gen test
Y
yangfei 已提交
310

311
    ADD_EXECUTABLE(test-inceptionv4 net/test_inceptionv4.cpp test_helper.h test_include.h executor_for_test.h)
Y
yangfei 已提交
312 313 314
    target_link_libraries(test-inceptionv4 paddle-mobile)

    # gen test
315
    ADD_EXECUTABLE(test-alexnet net/test_alexnet.cpp test_helper.h test_include.h executor_for_test.h)
Y
yangfei 已提交
316 317
    target_link_libraries(test-alexnet paddle-mobile)

318
    ADD_EXECUTABLE(test-googlenetv1 net/test_googlenetv1_combine.cpp test_helper.h test_include.h)
319 320 321
    target_link_libraries(test-googlenetv1 paddle-mobile)

    # gen test
322
    ADD_EXECUTABLE(test-fssd net/test_mobilenet_025_fssd.cpp test_helper.h test_include.h)
323 324
    target_link_libraries(test-fssd paddle-mobile)

Y
yangfei 已提交
325

L
liuruilong 已提交
326
    #add_library(test-lib-size SHARED common/test_lib_size.h common/test_lib_size.cpp)
327
endif ()