CMakeLists.txt 2.2 KB
Newer Older
1
set(op_DEPS ${tensor_lite} op_lite op_params_lite)
S
update  
superjomn 已提交
2

3 4 5 6
cc_library(fc_op_lite SRCS fc_op.cc DEPS ${op_DEPS})
cc_library(relu_op_lite SRCS relu_op.cc DEPS ${op_DEPS})
cc_library(mul_op_lite SRCS mul_op.cc DEPS ${op_DEPS})
cc_library(scale_op_lite SRCS scale_op.cc DEPS ${op_DEPS})
7
cc_library(softmax_op_lite SRCS softmax_op.cc DEPS ${op_DEPS})
8
cc_library(reshape_op_lite SRCS reshape_op.cc DEPS ${op_DEPS} )
9 10 11
cc_library(feed_op_lite SRCS feed_op.cc DEPS ${op_DEPS})
cc_library(fetch_op_lite SRCS fetch_op.cc DEPS ${op_DEPS})
cc_library(io_copy_op_lite SRCS io_copy_op.cc DEPS ${op_DEPS})
Y
Yan Chunwei 已提交
12 13
cc_library(activation_ops_lite SRCS activation_ops.cc DEPS ${op_DEPS})
cc_library(elementwise_ops_lite SRCS elementwise_ops.cc DEPS ${op_DEPS})
L
liuwei1031 已提交
14 15
cc_library(mean_op_lite SRCS mean_op.cc DEPS ${op_DEPS})
cc_library(fill_constant_op_lite SRCS fill_constant_op.cc DEPS ${op_DEPS})
L
liuwei1031 已提交
16
#cc_library(sgd_op_lite SRCS sgd_op.cc DEPS ${op_DEPS})
Y
Yan Chunwei 已提交
17
cc_library(op_params_lite SRCS op_params.cc DEPS ${tensor_lite} any_lite framework_proto_lite)
18
cc_library(dropout_op_lite SRCS dropout_op.cc DEPS ${op_DEPS})
19
cc_library(concat_op_lite SRCS concat_op.cc DEPS ${op_DEPS})
20 21
cc_library(conv_op_lite SRCS conv_op.cc DEPS ${op_DEPS})
cc_library(pool_op_lite SRCS pool_op.cc DEPS ${op_DEPS})
22
cc_library(batch_norm_op_lite SRCS batch_norm.cc DEPS ${op_DEPS})
23

S
update  
superjomn 已提交
24
set(ops_lite
Z
Zhen Wang 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
    fc_op_lite
    relu_op_lite
    mul_op_lite
    scale_op_lite
    softmax_op_lite
    reshape_op_lite
    feed_op_lite
    fetch_op_lite
    io_copy_op_lite
    elementwise_ops_lite
    mean_op_lite
    fill_constant_op_lite
    activation_ops_lite
    dropout_op_lite
    concat_op_lite
    conv_op_lite
    pool_op_lite
42
    batch_norm_op_lite
Z
Zhen Wang 已提交
43
    CACHE INTERNAL "ops lite")
S
superjomn 已提交
44

45 46 47
lite_cc_test(test_fc_op_lite SRCS fc_op_test.cc 
             DEPS fc_op_lite memory_lite 
             X86_DEPS fc_compute_x86
48 49
                 ARM_DEPS fc_compute_arm)
lite_cc_test(test_scale_op_lite SRCS scale_op_test.cc DEPS scale_op_lite memory_lite)
50
lite_cc_test(test_softmax_op_lite SRCS softmax_op_test.cc DEPS softmax_op_lite memory_lite)
51
lite_cc_test(test_reshape_op_lite SRCS reshape_op_test.cc DEPS reshape_op_lite memory_lite)
52
lite_cc_test(test_concat_op_lite SRCS concat_op_test.cc DEPS concat_op_lite memory_lite)