CMakeLists.txt 437 字节
Newer Older
1 2
op_library(tensorrt_engine_op DEPS tensorrt_engine tensorrt_converter
           infer_io_utils analysis_helper)
3 4 5
nv_test(
  test_tensorrt_engine_op
  SRCS tensorrt_engine_op_test.cc
6
  DEPS tensorrt_engine_op analysis)
7 8 9 10 11 12

if(WITH_ONNXRUNTIME AND WIN32)
  # Copy onnxruntime for some c++ test in Windows, since the test will
  # be build only in CI, so suppose the generator in Windows is Ninja.
  copy_onnx(test_tensorrt_engine_op)
endif()