1 2 3 4 5 6 7 8 9
pub mod engine; pub mod error; pub mod tensor; pub use engine::TRTEngine; pub use error::{TRTError, TRTResult}; pub use tensor::{Shape, Tensor}; pub use tensorrt_rs_sys::runtime::DataType;