CMakeLists.txt 659 字节
Newer Older
1 2 3 4 5
cc_library(fc_compute_host SRCS fc_compute.cc DEPS ${lite_kernel_deps})
cc_library(relu_compute_host SRCS relu_compute.cc DEPS ${lite_kernel_deps})
cc_library(mul_compute_host SRCS mul_compute.cc DEPS ${lite_kernel_deps})
cc_library(scale_compute_host SRCS scale_compute.cc DEPS ${lite_kernel_deps})
cc_library(feed_compute_host SRCS feed_compute.cc DEPS ${lite_kernel_deps})
S
superjomn 已提交
6

S
superjomn 已提交
7 8
cc_library(host_kernels DEPS
        fc_compute_host
S
superjomn 已提交
9 10 11
        relu_compute_host
        mul_compute_host
        scale_compute_host
S
Superjomn 已提交
12
        feed_compute_host
13
        DEPS ${lite_kernel_deps}
S
superjomn 已提交
14
        )
S
superjomn 已提交
15

S
superjomn 已提交
16
cc_test(test_fc_compute SRCS fc_compute_test.cc DEPS fc_compute_host fc_op_lite)