CMakeLists.txt 568 字节
Newer Older
1 2
cc_library(subgraph_detector SRCS subgraph_detector.cc DEPS proto_desc)

3 4 5 6 7 8 9 10 11 12 13
if (TENSORRT_FOUND)
  cc_library(tensorrt_subgraph_pass SRCS tensorrt_subgraph_pass.cc DEPS subgraph_detector tensorrt_op_teller)

  set(analysis_deps ${analysis_deps}
          subgraph_detector tensorrt_subgraph_pass
          CACHE INTERNAL "")

  set(pass_file ${PADDLE_BINARY_DIR}/paddle/fluid/inference/api/paddle_inference_pass.h)
  file(APPEND ${pass_file} "USE_PASS(tensorrt_subgraph_pass);\n")
  set(INFER_IR_PASSES ${INFER_IR_PASSES} tensorrt_subgraph_pass CACHE INTERNAL "")
endif()