trueno_gpu/testing/stress/mod.rs
1//! Stress Testing Framework with Randomized Inputs
2//!
3//! Frame-by-frame stress testing with:
4//! - Randomized inputs via simular (deterministic RNG)
5//! - Performance profiling via renacer
6//! - Anomaly detection for regression identification
7//!
8//! # Sovereign Stack
9//!
10//! - `simular` v0.2.0: Deterministic RNG (SimRng)
11//! - `renacer` v0.7.0: Profiling and anomaly detection
12
13mod rng;
14mod runner;
15mod types;
16
17#[cfg(test)]
18mod tests_core;
19#[cfg(test)]
20mod tests_extended;
21
22pub use rng::StressRng;
23pub use runner::{StressConfig, StressTestRunner};
24pub use types::{
25 verify_performance, Anomaly, AnomalyKind, FrameProfile, PerformanceResult,
26 PerformanceThresholds, StressReport,
27};