Skip to main content

cgp/
lib.rs

1//! CGP: Compute-GPU-Profile — Unified Performance Analysis Library
2//!
3//! Provides profiling, roofline modeling, regression detection, and Muda (waste)
4//! analysis for scalar, SIMD, wgpu, and CUDA workloads.
5
6// `.unwrap()` is banned in production via workspace `.clippy.toml`, but is
7// idiomatic in `#[cfg(test)]` assertions. Allow it only under `cfg(test)`.
8#![cfg_attr(test, allow(clippy::disallowed_methods))]
9
10pub mod analysis;
11pub mod cli;
12pub mod doctor;
13pub mod metrics;
14pub mod profilers;