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.
#![allow(
    unsafe_op_in_unsafe_fn,
    clippy::missing_safety_doc,
    clippy::too_many_arguments
)]

//! Accumulation and activation kernels for WaveNet — AVX2, AVX-512 and scalar fallback.

mod avx2;
mod avx512;
mod kernel_macro;
#[cfg(test)]
pub mod scalar;

pub use avx2::*;
pub use avx512::*;
#[cfg(test)]
pub use scalar::*;