CMakeLists.txt 1.9 KB
Newer Older
1
set(cxx_api_lite_deps scope_lite optimizer_lite target_wrapper_host model_parser_lite)
S
superjomn 已提交
2
if(LITE_WITH_CUDA)
3
    set(cxx_api_lite_deps ${cxx_api_lite_deps} kernels_cuda)
S
Superjomn 已提交
4 5
    cc_library(cxx_api_lite_cuda SRCS cxx_api.cc DEPS ${cxx_api_lite_deps} target_wrapper_cuda)
    nv_test(test_cxx_api_lite_cuda SRCS cxx_api_test.cc DEPS cxx_api_lite_cuda)
S
superjomn 已提交
6
endif()
S
Superjomn 已提交
7

S
update  
superjomn 已提交
8
cc_library(cxx_api_lite SRCS cxx_api.cc DEPS ${cxx_api_lite_deps} ${ops_lite})
S
Superjomn 已提交
9 10

set(light_api_deps
S
update  
superjomn 已提交
11
    scope_lite target_wrapper_host model_parser_lite)
S
Superjomn 已提交
12 13 14 15 16

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

S
update  
superjomn 已提交
17
cc_library(light_api_lite SRCS light_api.cc DEPS ${light_api_deps} ${ops_lite} ${host_kernels})
S
Superjomn 已提交
18

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

include(ExternalProject)
set(LITE_URL "http://paddle-inference-dist.bj.bcebos.com" CACHE STRING "inference download url")
set(LITE_DEMO_INSTALL_DIR "${THIRD_PARTY_PATH}/inference_demo" CACHE STRING
        "A path setting inference demo download directories.")


Y
Yan Chunwei 已提交
29 30 31 32
# lite_cc_test(test_cxx_api_lite SRCS cxx_api_test.cc
#   DEPS cxx_api_lite model_parser_lite target_wrapper_host
#   ${ops_lite} ${host_kernels} ARGS --model_dir=${LITE_MODEL_DIR}/lite_naive_model
#         --optimized_model=${LITE_MODEL_DIR}/lite_naive_model_opt SERIAL)
S
superjomn 已提交
33 34
if(WITH_TESTING)
lite_download_and_uncompress(${LITE_MODEL_DIR} ${LITE_URL} "lite_naive_model.tar.gz")
Y
Yan Chunwei 已提交
35
# add_dependencies(test_cxx_api_lite extern_lite_download_lite_naive_model_tar_gz)
S
superjomn 已提交
36 37
endif(WITH_TESTING)

Y
Yan Chunwei 已提交
38
# lite_cc_test(test_light_api SRCS light_api_test.cc DEPS light_api_lite ARGS --optimized_model=${LITE_MODEL_DIR}/lite_naive_model_opt SERIAL)
39

Y
Yan Chunwei 已提交
40 41
lite_cc_binary(cxx_api_lite_bin SRCS cxx_api_bin.cc
    DEPS
42
    cxx_api_lite
Y
Yan Chunwei 已提交
43 44 45 46 47
    model_parser_lite
    target_wrapper_host
    mir_passes
    ${ops_lite} ${host_kernels}
    ARM_DEPS ${arm_kernels})