aprender-cgp 0.64.0

Compute-GPU-Profile: Unified performance analysis CLI for scalar, SIMD, wgpu, and CUDA workloads
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! CGP: Compute-GPU-Profile — Unified Performance Analysis Library
//!
//! Provides profiling, roofline modeling, regression detection, and Muda (waste)
//! analysis for scalar, SIMD, wgpu, and CUDA workloads.

// `.unwrap()` is banned in production via workspace `.clippy.toml`, but is
// idiomatic in `#[cfg(test)]` assertions. Allow it only under `cfg(test)`.
#![cfg_attr(test, allow(clippy::disallowed_methods))]

pub mod analysis;
pub mod cli;
pub mod doctor;
pub mod metrics;
pub mod profilers;