CMakeLists.txt 826 字节
Newer Older
1 2
# Compiling with WITH_PYTHON=ON and WITH_TENSORRT=ON failed on windows. Temporarily add paddle_inference_api dependency to solve the problem
if(WIN32)
3 4 5 6 7
  nv_library(
    tensorrt_engine
    SRCS engine.cc trt_int8_calibrator.cc
    DEPS ${GLOB_OPERATOR_DEPS} framework_proto device_context boost
         paddle_inference_api)
8
else()
9 10 11 12
  nv_library(
    tensorrt_engine
    SRCS engine.cc trt_int8_calibrator.cc
    DEPS ${GLOB_OPERATOR_DEPS} framework_proto device_context boost)
13
endif()
14 15 16 17 18 19 20 21 22 23 24 25
nv_library(
  tensorrt_op_teller
  SRCS op_teller.cc
  DEPS framework_proto device_context boost)
nv_test(
  test_tensorrt
  SRCS test_tensorrt.cc
  DEPS dynload_cuda device_context dynamic_loader)
nv_test(
  test_tensorrt_engine
  SRCS test_engine.cc
  DEPS dynload_cuda tensorrt_engine)
N
nhzlx 已提交
26
add_subdirectory(plugin)
L
Luo Tao 已提交
27
add_subdirectory(convert)