CMakeLists.txt 351 字节
Newer Older
1 2
core_gather_headers()

3 4 5 6 7 8 9 10 11
gather_srcs(
  infrt_src
  SRCS
  trt_ops.cc
  trt_op_converter_pass.cc
  trt_op_teller_pass.cc
  trt_graph_fuse_pass.cc
  trt_graph_split_pass.cc
  trt_type_convert_pass.cc)
12
mlir_tablegen_on(trt_ops)
13
mlir_add_rewriter(pd_lower_to_trt)
14 15 16

add_executable(trt-exec trt_exec.cc)
target_link_libraries(trt-exec infrt ${MLIR_IR_LIBS})