Skip to main content

qualia_core_db/wgsl_forge/audio/
mod.rs

1//! Forge-native audio kernels (GPU compute with a CPU oracle + parity certify).
2//!
3//! Each kernel here follows the forge-native template (see
4//! [`crate::wgsl_forge::physics::kinematics`]): the WGSL is embedded via `include_str!`
5//! (single source of truth), an exact scalar CPU oracle grades it, and a public entry
6//! point picks the GPU path when a wgpu adapter is present and otherwise falls back to
7//! the CPU floor — so the feature works with or without a GPU.
8
9pub mod mel;
10
11pub use mel::{mel_apply, mel_apply_cpu, mel_apply_forge, MEL_APPLY_ENTRY, MEL_APPLY_WGSL};