├── .gitignore ├── CMakeLists.txt ├── README.md ├── check_models.py ├── example1.cpp ├── example2.cpp ├── example3-load.cpp ├── example3-save.cpp ├── example4.cpp ├── example5.cpp ├── example6.cpp ├── example7.cpp ├── example7prof.cpp ├── gen_models.py ├── model1.onnx └── model2.onnx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrechnev/trt-cpp-min/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrechnev/trt-cpp-min/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrechnev/trt-cpp-min/HEAD/README.md -------------------------------------------------------------------------------- /check_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrechnev/trt-cpp-min/HEAD/check_models.py -------------------------------------------------------------------------------- /example1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrechnev/trt-cpp-min/HEAD/example1.cpp -------------------------------------------------------------------------------- /example2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrechnev/trt-cpp-min/HEAD/example2.cpp -------------------------------------------------------------------------------- /example3-load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrechnev/trt-cpp-min/HEAD/example3-load.cpp -------------------------------------------------------------------------------- /example3-save.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrechnev/trt-cpp-min/HEAD/example3-save.cpp -------------------------------------------------------------------------------- /example4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrechnev/trt-cpp-min/HEAD/example4.cpp -------------------------------------------------------------------------------- /example5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrechnev/trt-cpp-min/HEAD/example5.cpp -------------------------------------------------------------------------------- /example6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrechnev/trt-cpp-min/HEAD/example6.cpp -------------------------------------------------------------------------------- /example7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrechnev/trt-cpp-min/HEAD/example7.cpp -------------------------------------------------------------------------------- /example7prof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrechnev/trt-cpp-min/HEAD/example7prof.cpp -------------------------------------------------------------------------------- /gen_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrechnev/trt-cpp-min/HEAD/gen_models.py -------------------------------------------------------------------------------- /model1.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrechnev/trt-cpp-min/HEAD/model1.onnx -------------------------------------------------------------------------------- /model2.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agrechnev/trt-cpp-min/HEAD/model2.onnx --------------------------------------------------------------------------------