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

S
update  
superjomn 已提交
23
set(ops_lite
S
superjomn 已提交
24
        fc_op_lite
S
superjomn 已提交
25 26 27
        relu_op_lite
        mul_op_lite
        scale_op_lite
28
        softmax_op_lite
29
        reshape_op_lite
S
Superjomn 已提交
30
        feed_op_lite
31
        fetch_op_lite
S
Superjomn 已提交
32
        io_copy_op_lite
L
liuwei1031 已提交
33 34 35
        elementwise_ops_lite
        mean_op_lite
        fill_constant_op_lite
36 37
        activation_ops_lite
        dropout_op_lite
38
        concat_op_lite
39 40
        conv_op_lite
        pool_op_lite
S
update  
superjomn 已提交
41
        PARENT_SCOPE)
S
superjomn 已提交
42

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