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
//! Standalone `aprender-cgp` binary.
//!
//! The entire command surface lives in `cgp::cli` so that a host binary (`apr`)
//! can dispatch into it; this target is only a shim.

use anyhow::Result;

fn main() -> Result<()> {
    cgp::cli::run()
}