CMakeLists.txt 651 字节
Newer Older
T
tensor-tang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13

if(NOT (LITE_WITH_LIGHT_WEIGHT_FRAMEWORK AND LITE_WITH_ARM))
  return()
endif()

# TODO(xxx): seperate them
cc_library(math_arm SRCS  
    funcs.cc 
    packed_sgemm.cc 
    softmax.cc 
    scale.cc
    elementwise.cc
    sgemv.cc
T
tensor-tang 已提交
14
    type_trans.cpp
T
tensor-tang 已提交
15 16 17 18
    conv_impl.cc
    conv_direct_3x3s1.cc
    conv_direct_3x3s2.cc
    conv_direct.cc
T
tensor-tang 已提交
19 20 21 22 23 24 25 26 27 28
    conv_depthwise_3x3_int7.cc
    conv_depthwise_3x3_int8.cc
    conv_depthwise_5x5s1_int8.cc
    conv_depthwise_3x3p0.cc
    conv_depthwise_3x3p1.cc
    conv_depthwise_5x5s1.cc
    conv_depthwise_5x5s2.cc
    conv_depthwise.cc
    conv_gemmlike.cc
    conv_winograd_3x3.cc
T
tensor-tang 已提交
29 30
    DEPS ${lite_kernel_deps} eigen3)