NeuralAmpModeler-rs 0.1.0

High-performance Neural Amp Modeler DSP core: WaveNet/LSTM/ConvNet inference, SIMD math (x86-64-v3), .nam/.namb loader, cabinet IR, resampling and noise gate.
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2026 Fábio Henrique de Lima Silva (fhl.bsb@gmail.com) All rights reserved.

//! Testing utilities for NAM-rs cross-validation and signal generation.
//!
//! This module provides:
//! - Deterministic stress signal generators (v1 for fast CI, v2 for comprehensive validation)
//! - Audio primitives ported from t3k-mushra (MIT-licensed)
//! - Perceptual metrics (ESR, LUFS) calibrated against published baselines
//! - ASR (Aliasing-to-Signal Ratio) metric per Sato & Smith DAFx 2025
//! - Centralized fixture-path resolution for models, goldens, and stress signals
//! - WAV I/O helpers for test fixtures

pub mod aliasing;
pub mod fixtures;
pub mod mushra;
pub mod perceptual;
pub mod reference_oracle;
pub mod spectral;
pub mod stress;
pub mod wav;