CMakeLists.txt 6.5 KB
Newer Older
C
Chunwei 已提交
1 2
set(cxx_api_lite_deps
  scope_lite optimizer_lite target_wrapper_host model_parser_lite program_lite)
S
superjomn 已提交
3
if(LITE_WITH_CUDA)
4
    set(cxx_api_lite_deps ${cxx_api_lite_deps} kernels_cuda)
Z
Zhen Wang 已提交
5
    lite_cc_library(cxx_api_lite_cuda SRCS cxx_api.cc DEPS ${cxx_api_lite_deps} target_wrapper_cuda)
S
Superjomn 已提交
6
    nv_test(test_cxx_api_lite_cuda SRCS cxx_api_test.cc DEPS cxx_api_lite_cuda)
S
superjomn 已提交
7
endif()
S
Superjomn 已提交
8

C
Chunwei 已提交
9
lite_cc_library(place_lite SRCS paddle_place.cc DEPS glog)
C
Chunwei 已提交
10

C
Chunwei 已提交
11 12 13 14
lite_cc_library(lite_api_test_helper SRCS lite_api_test_helper.cc
  DEPS scope_lite optimizer_lite target_wrapper_host model_parser_lite program_lite
       ${ops_lite} ${host_kernels}
  CUDA_DEPS kernels_cuda
Z
Zhen Wang 已提交
15
  X86_DEPS ${x86_kernels})
S
Superjomn 已提交
16 17

set(light_api_deps
C
Chunwei 已提交
18
    scope_lite target_wrapper_host model_parser_lite program_lite)
S
Superjomn 已提交
19 20 21 22 23

if(LITE_WITH_CUDA)
    set(light_api_deps ${light_api_deps} target_wrapper_cuda)
endif()

S
update  
superjomn 已提交
24
message(STATUS "get ops ${ops_lite}")
25 26
message(STATUS "get Host kernels ${host_kernels}")
message(STATUS "get ARM kernels ${arm_kernels}")
S
superjomn 已提交
27

C
Chunwei 已提交
28 29 30 31 32 33 34
lite_cc_library(cxx_api_lite
                SRCS cxx_api.cc
                DEPS ${cxx_api_lite_deps} ${ops_lite} ${host_kernels} program_lite
                X86_DEPS ${x86_kernels} operator
                ARM_DEPS ${arm_kernels}
                CL_DEPS ${opencl_kenrels}
              )
C
Chunwei 已提交
35 36 37 38 39 40 41

lite_cc_library(light_api_lite SRCS light_api.cc
        DEPS scope_lite target_wrapper_host model_parser_lite
            ${light_api_deps} ${ops_lite} ${host_kernels} program_lite
        CUDA_DEPS target_wrapper_cuda
        X86_DEPS ${x86_kernels} operator
        ARM_DEPS ${arm_kernels}
C
Chunwei 已提交
42
        CL_DEPS ${opencl_kenrels}
C
Chunwei 已提交
43 44
        )

S
superjomn 已提交
45 46 47 48
include(ExternalProject)
set(LITE_DEMO_INSTALL_DIR "${THIRD_PARTY_PATH}/inference_demo" CACHE STRING
        "A path setting inference demo download directories.")

49
if(NOT LITE_WITH_LIGHT_WEIGHT_FRAMEWORK AND WITH_TESTING)
Y
Yan Chunwei 已提交
50
    lite_cc_test(test_cxx_api_lite SRCS cxx_api_test.cc
C
Chunwei 已提交
51
       DEPS cxx_api_lite mir_passes lite_api_test_helper
52
       ${ops_lite} ${host_kernels} ${x86_kernels}
53
       ARGS --model_dir=${LITE_MODEL_DIR}/lite_naive_model
54
            --optimized_model=${LITE_MODEL_DIR}/lite_naive_model_opt SERIAL)
Y
Yan Chunwei 已提交
55
    add_dependencies(test_cxx_api_lite extern_lite_download_lite_naive_model_tar_gz)
56 57 58 59 60
    lite_cc_test(test_googlenet_lite SRCS test_googlenet_lite.cc
       DEPS cxx_api_lite mir_passes lite_api_test_helper
       ${ops_lite} ${host_kernels} ${x86_kernels}
       ARGS --model_dir=${LITE_MODEL_DIR}/googlenet)
    add_dependencies(test_googlenet_lite extern_lite_download_GoogleNet_inference_tar_gz)
61 62
endif()

C
Chunwei 已提交
63

64 65 66 67
if(LITE_WITH_LIGHT_WEIGHT_FRAMEWORK AND WITH_TESTING)
    set(lite_model_test_DEPS cxx_api_lite mir_passes ${ops_lite} ${host_kernels} ${arm_kernels})

    lite_cc_test(test_mobilenetv1_lite SRCS mobilenetv1_test.cc
C
Chunwei 已提交
68 69
       DEPS ${lite_model_test_DEPS}
       CL_DEPS ${opencl_kernels}
Z
Zhen Wang 已提交
70 71
       ARGS --cl_path=${CMAKE_SOURCE_DIR}/paddle/fluid/lite/opencl
            --model_dir=${LITE_MODEL_DIR}/mobilenet_v1 SERIAL)
72 73 74
    add_dependencies(test_mobilenetv1_lite extern_lite_download_mobilenet_v1_tar_gz)

    lite_cc_test(test_mobilenetv2_lite SRCS mobilenetv2_test.cc
C
Chunwei 已提交
75
       DEPS ${lite_model_test_DEPS}
Z
Zhen Wang 已提交
76 77 78
       CL_DEPS ${opencl_kernels}
       ARGS --cl_path=${CMAKE_SOURCE_DIR}/paddle/fluid/lite/opencl
            --model_dir=${LITE_MODEL_DIR}/mobilenet_v2 SERIAL)
S
sangoly 已提交
79
    add_dependencies(test_mobilenetv2_lite extern_lite_download_mobilenet_v2_relu_tar_gz)
80 81

    lite_cc_test(test_resnet50_lite SRCS resnet50_test.cc
C
Chunwei 已提交
82
       DEPS ${lite_model_test_DEPS}
Z
Zhen Wang 已提交
83 84 85
       CL_DEPS ${opencl_kernels}
       ARGS --cl_path=${CMAKE_SOURCE_DIR}/paddle/fluid/lite/opencl
            --model_dir=${LITE_MODEL_DIR}/resnet50 SERIAL)
86 87 88
    add_dependencies(test_resnet50_lite extern_lite_download_resnet50_tar_gz)

    lite_cc_test(test_inceptionv4_lite SRCS inceptionv4_test.cc
C
Chunwei 已提交
89
       DEPS ${lite_model_test_DEPS}
Z
Zhen Wang 已提交
90 91 92
       CL_DEPS ${opencl_kernels}
       ARGS --cl_path=${CMAKE_SOURCE_DIR}/paddle/fluid/lite/opencl
            --model_dir=${LITE_MODEL_DIR}/inception_v4 SERIAL)
S
sangoly 已提交
93
    add_dependencies(test_inceptionv4_lite extern_lite_download_inception_v4_simple_tar_gz)
Y
Yan Chunwei 已提交
94
endif()
95

C
Chunwei 已提交
96 97
# These tests needs CLI arguments, and is not supported in ARM CI.
# TODO(Superjomn) support latter.
S
update  
superjomn 已提交
98
lite_cc_test(test_light_api_lite SRCS light_api_test.cc
C
Chunwei 已提交
99
    DEPS light_api_lite program_lite mir_passes
Z
ZhenWang 已提交
100
    CL_DEPS ${opencl_kernels}
Z
Zhen Wang 已提交
101
    ARGS --optimized_model=${LITE_MODEL_DIR}/lite_naive_model_opt SERIAL)
C
Chunwei 已提交
102

S
update  
superjomn 已提交
103 104
lite_cc_test(test_apis_lite SRCS apis_test.cc
  DEPS cxx_api_lite light_api_lite ${ops_lite}
Z
ZhenWang 已提交
105
  CL_DEPS ${opencl_kernels}
S
update  
superjomn 已提交
106 107
  X86_DEPS ${x86_kernels} operator
  ARGS --model_dir=${LITE_MODEL_DIR}/lite_naive_model
Z
Zhen Wang 已提交
108
       --optimized_model=${LITE_MODEL_DIR}/lite_naive_model_opt SERIAL)
109

C
Chunwei 已提交
110
lite_cc_library(paddle_api_lite SRCS paddle_api.cc DEPS op_params_lite)
C
Chunwei 已提交
111

S
superjomn 已提交
112 113 114 115 116 117 118
#-----------------------------------------------------------------------------------------------------
# The final inference library for both CxxConfig and MobileConfig.
lite_cc_library(paddle_api_full SRCS cxx_api_impl.cc DEPS cxx_api_lite paddle_api_lite light_api_lite
  ${ops_lite}
  ARM_DEPS ${arm_kernels}
  )
# The final inference library for just MobileConfig.
C
Chunwei 已提交
119
lite_cc_library(paddle_api_light SRCS light_api_impl.cc DEPS light_api_lite paddle_api_lite)
C
Chunwei 已提交
120

S
superjomn 已提交
121 122 123 124 125
bundle_static_library(paddle_api_full paddle_api_full_bundled bundle_full_api)
bundle_static_library(paddle_api_light paddle_api_light_bundled bundle_light_api)
#-----------------------------------------------------------------------------------------------------


C
Chunwei 已提交
126
lite_cc_test(test_paddle_api_lite SRCS paddle_api_test.cc DEPS paddle_api_full paddle_api_light
C
Chunwei 已提交
127 128 129
  ${ops_lite}
  ARM_DEPS ${arm_kernels}
  X86_DEPS ${x86_kernels}
Z
ZhenWang 已提交
130
  CL_DEPS ${opencl_kernels}
C
Chunwei 已提交
131
  ARGS --model_dir=${LITE_MODEL_DIR}/lite_naive_model SERIAL)
132 133 134 135 136 137

lite_cc_test(test_model_bin SRCS model_test.cc DEPS paddle_api_full paddle_api_light
  ${ops_lite}
  ARM_DEPS ${arm_kernels}
  X86_DEPS ${x86_kernels})

C
Chunwei 已提交
138
if (WITH_TESTING)
C
Chunwei 已提交
139
    add_dependencies(test_paddle_api_lite extern_lite_download_lite_naive_model_tar_gz)
C
Chunwei 已提交
140 141
endif()

142 143
if (LITE_WITH_JAVA AND LITE_WITH_ARM)
    add_subdirectory(android)
H
Huihuang Zheng 已提交
144 145
endif()

X
xingzhaolong 已提交
146 147 148 149 150 151 152 153 154 155 156 157
#lite_cc_binary(cxx_api_lite_bin SRCS cxx_api_bin.cc
    #X86_DEPS operator
    #DEPS light_api_lite model_parser_lite target_wrapper_host mir_passes
    #ARM_DEPS ${arm_kernels})

lite_cc_binary(cxx_api_lite_bin SRCS cxx_api_bin_int8.cc
    DEPS
    cxx_api_lite
    model_parser_lite
    target_wrapper_host
    mir_passes
    ${ops_lite} ${host_kernels}
Z
ZhenWang 已提交
158
    CL_DEPS ${opencl_kernels}
X
xingzhaolong 已提交
159
    ARM_DEPS ${arm_kernels})
Z
ZhenWang 已提交
160 161 162
lite_cc_binary(model_optimize_tool SRCS model_optimize_tool.cc 
    DEPS paddle_api_full
    CL_DEPS ${opencl_kernels})