Expand description
axonml-profile - Profiling Tools for Axonml ML Framework
§File
crates/axonml-profile/src/lib.rs
§Author
Andrew Jewell Sr - AutomataNexus
§Updated
March 8, 2026
§Disclaimer
Use at own risk. This software is provided “as is”, without warranty of any kind, express or implied. The author and AutomataNexus shall not be held liable for any damages arising from the use of this software.
Re-exports§
pub use bottleneck::Bottleneck;pub use bottleneck::BottleneckAnalyzer;pub use bottleneck::BottleneckType;pub use compute::ComputeProfiler;pub use compute::OperationStats;pub use compute::ProfiledOp;pub use error::ProfileError;pub use error::ProfileResult;pub use memory::AllocationRecord;pub use memory::MemoryProfiler;pub use memory::MemoryStats;pub use report::ProfileReport;pub use report::ReportFormat;pub use timeline::Event;pub use timeline::EventType;pub use timeline::TimelineProfiler;
Modules§
- bottleneck
- Bottleneck Detection Module
- compute
- Compute Profiling Module
- error
- Error types for the profiling module.
- memory
- Memory Profiling Module
- report
- Report Generation Module
- timeline
- Timeline Profiling Module
Macros§
- profile_
scope - Creates a profile guard for automatic scope-based profiling.
Structs§
- Profile
Guard - RAII guard for automatic profiling scope.
- Profiler
- Unified profiler combining memory, compute, and timeline profiling.
Functions§
- global_
profiler - Gets the global profiler instance.
- record_
alloc - Records a memory allocation using the global profiler.
- record_
free - Records a memory deallocation using the global profiler.
- start
- Starts profiling an operation using the global profiler.
- stop
- Stops profiling an operation using the global profiler.