//! `RustyTorch`++ Inference Profiler backend. //! //! Profiles REAL CPU tensor compute (matmul/softmax) via `rtx-tensor`, //! scaled proportionally to represent different model classes; this is NOT //! a literal architectural replica of ResNet/ViT/ConvNeXt. See //! [`bench_model`] for details and the `DeviceType` CPU-only caveat. #![forbid(unsafe_code)] #![warn(missing_docs)] pub mod bench_model; pub mod error; pub mod profiler; pub use error::ProfilerError; pub use profiler::InferenceProfiler;