whisper-apr 0.3.1

WASM-first automatic speech recognition engine implementing OpenAI Whisper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Tier C — Profiling (renacer integration + BrickProfiler).
//!
//! Split into four submodules by concern:
//! - [`types`]   — shared `BrickDetail`/`ProfileRun`/`AvgBrickDetail`/`ProfileSummary` structs
//! - [`sweep`]   — thread-scaling sweep (Amdahl metrics, WAPR-PROFILE-001 Gap 3)
//! - [`run`]     — `run_profile` entry point + roofline/brick-detail extraction
//! - [`summary`] — `ProfileSummary` formatters (JSON, renacer, print_table)

mod run;
mod summary;
mod sweep;
mod types;

pub(in super::super) use run::run_profile;