CMakeLists.txt 3.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

16 17 18
if(APPLE)
    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-error=pessimizing-move")
endif(APPLE)
19

Y
Yiqun Liu 已提交
20 21
add_subdirectory(details)

22
if(WITH_MKLDNN)
23
  set(mkldnn_quantizer_cfg mkldnn_quantizer_config)
24
  set(mkldnn_quantizer_src ${CMAKE_CURRENT_SOURCE_DIR}/mkldnn_quantizer.cc)
25
  cc_library(${mkldnn_quantizer_cfg} SRCS mkldnn_quantizer_config.cc DEPS lod_tensor paddle_pass_builder)
26
  set(mkldnn_quantizer_cfg ${mkldnn_quantizer_cfg} PARENT_SCOPE)
27 28
endif()

S
Steffy-zxf 已提交
29
cc_library(analysis_config SRCS analysis_config.cc DEPS ${mkldnn_quantizer_cfg} lod_tensor paddle_pass_builder table_printer utf8proc)
30
cc_library(paddle_infer_contrib SRCS paddle_infer_contrib.cc DEPS zero_copy_tensor)
31
cc_library(paddle_pass_builder SRCS paddle_pass_builder.cc)
32

33
set(paddle_inference_api_deps lod_tensor scope reset_tensor_array
34
    analysis_config paddle_infer_contrib zero_copy_tensor trainer_desc_proto custom_operator phi_custom_kernel)
35

36
if(WITH_CRYPTO)
37
    list(APPEND paddle_inference_api_deps paddle_crypto)
38
endif()
39

40 41
cc_library(paddle_inference_api SRCS api.cc api_impl.cc helper.cc DEPS ${paddle_inference_api_deps})

42 43 44 45
if(WIN32)
    target_link_libraries(paddle_inference_api gflags)
endif()

46 47 48 49 50 51 52
set(inference_deps ${analysis_deps} paddle_inference_api analysis naive_executor ${GLOB_PASS_LIB})

if(WITH_GPU AND TENSORRT_FOUND)
    set(inference_deps ${inference_deps} tensorrt_engine tensorrt_converter)
endif()

cc_library(analysis_predictor SRCS analysis_predictor.cc ${mkldnn_quantizer_src} DEPS ${inference_deps} 
53
          zero_copy_tensor ir_pass_manager op_compatible_info infer_io_utils)
54

55
cc_test(test_paddle_inference_api SRCS api_tester.cc DEPS paddle_inference_api)
X
Xin Pan 已提交
56

57
if(WITH_TESTING)
58
  if (NOT APPLE AND NOT WIN32)
Y
YUNSHEN XIE 已提交
59 60 61 62
    if (WITH_GPU)
      inference_base_test(test_api_impl SRCS api_impl_tester.cc DEPS paddle_inference_shared
        ARGS --word2vec_dirname=${WORD2VEC_MODEL_DIR} --book_dirname=${IMG_CLS_RESNET_INSTALL_DIR})
    endif()
63
  elseif(WIN32)
64
    inference_base_test(test_api_impl SRCS api_impl_tester.cc DEPS ${inference_deps}
W
Wilber 已提交
65
      ARGS --word2vec_dirname=${WORD2VEC_MODEL_DIR} --book_dirname=${IMG_CLS_RESNET_INSTALL_DIR})
66
  endif()
67

68
endif()
69 70

if (NOT APPLE AND NOT WIN32)
71
  cc_test(test_analysis_predictor SRCS analysis_predictor_tester.cc DEPS paddle_inference_shared
72
          ARGS --dirname=${WORD2VEC_MODEL_DIR})
73
elseif (WIN32)
74 75 76
  cc_test(test_analysis_predictor SRCS analysis_predictor_tester.cc DEPS analysis_predictor benchmark ${inference_deps}
          ARGS --dirname=${WORD2VEC_MODEL_DIR})
endif()
77 78 79 80 81 82 83 84 85 86

if(WITH_TESTING AND WITH_MKLDNN)
  if (NOT APPLE AND NOT WIN32)
    cc_test(test_mkldnn_quantizer SRCS mkldnn_quantizer_tester.cc DEPS paddle_inference_shared ARGS --dirname=${WORD2VEC_MODEL_DIR})
  elseif (WIN32)
    cc_test(test_mkldnn_quantizer SRCS mkldnn_quantizer_tester.cc DEPS analysis_predictor benchmark ${inference_deps}
            ARGS --dirname=${WORD2VEC_MODEL_DIR})
  endif()
endif()

87
if(WITH_TESTING AND TEST test_api_impl)
Y
YUNSHEN XIE 已提交
88 89 90 91
    if(NOT APPLE)
        set_tests_properties(test_api_impl PROPERTIES TIMEOUT 120)
    endif()
endif()