10 lines
278 B
Rust
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};
|