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.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2026 Fábio Henrique de Lima Silva (fhl.bsb@gmail.com) All rights reserved.

//! f64 reference oracle for WaveNet A2 models.
//!
//! - `static_eval` — weight extraction and static array construction from parsed model data.
//! - `dynamic_eval` — forward-pass execution loop with FiLM conditioning and gating.

#![allow(missing_docs)]

pub(crate) mod dynamic_eval;
pub(crate) mod static_eval;

pub(crate) use dynamic_eval::oracle_a2_forward;