1#![doc = include_str!("../README.md")]
2
3#[cfg(feature = "tensorrt-runtime")]
4pub mod tensorrt;
5#[cfg(not(feature = "tensorrt-runtime"))]
6#[path = "tensorrt_stub.rs"]
7pub mod tensorrt;
8
9pub use tensorrt::{BatchConfig, TensorRtBackend, validate_batch_config};