1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#![recursion_limit = "256"]

pub mod builder;
pub mod engine;
pub mod error;
pub mod ffi;
pub mod runtime;

#[cfg(test)]
mod tests;

pub use builder::Builder;
pub use engine::{Engine, ExecutionContext};
pub use error::Error;
pub use ffi::builder_config::BuilderConfig;
pub use ffi::memory::HostBuffer;
pub use ffi::network::{NetworkDefinition, NetworkDefinitionCreationFlags, Tensor};
pub use ffi::optimization_profile::OptimizationProfile;
pub use ffi::parser::Parser;
pub use runtime::Runtime;