Skip to main content

miden_debug_engine/profiling/
mod.rs

1pub mod config;
2pub(crate) mod helpers;
3pub mod instrument;
4mod profiler;
5
6pub use config::{ProfilerCliArgs, ProfilerConfig};
7pub use instrument::{
8    Instrument, InstrumentRegistration, OpHistogramGlobal, OpHistogramProc, instrument_from_name,
9};
10pub use profiler::Profiler;