Files
rustytorch/crates/integration/rtx-rustybooks/src/profiler/mod.rs
T
2026-03-04 00:08:42 +00:00

10 lines
278 B
Rust

//! Profiler integration module
//!
//! Provides extended kernel profiling using gpu-profiler.
mod kernel_stats;
mod warp_analysis;
pub use kernel_stats::{ExtendedKernelProfiler, ProfilingResult, ReportFormat};
pub use warp_analysis::{SIMDMetrics, WarpAnalyzer, WarpMetrics};