Skip to main content

cgp/profilers/
mod.rs

1//! Backend profilers for all compute modalities.
2//! Wraps ncu, nsys, CUPTI, perf stat, wgpu timestamps, wasmtime, and more.
3
4pub mod cuda;
5pub mod neon;
6pub mod quant;
7pub mod rayon_parallel;
8pub mod scalar;
9pub mod simd;
10pub mod system;
11pub mod wasm;
12pub mod wgpu_profiler;