NeuralAmpModeler-rs 3.0.2

An opinionated, high-performance Neural Amp Modeler (NAM) client and core implementation in Rust for Linux/PipeWire and CLAP plugins.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2026 Fábio Henrique de Lima Silva (fhl.bsb@gmail.com) All rights reserved.

//! GEMV 4-Gate kernels for LSTM — AVX2 and AVX-512 (including BF16).

mod avx2; // gemv_4gate_avx2
mod avx512; // gemv_4gate_avx512
mod avx512_bf16;
mod kernel_macro; // gemv_4gate_bf16_avx512

pub use avx2::gemv_4gate_avx2;
pub use avx512::gemv_4gate_avx512;
pub use avx512_bf16::gemv_4gate_bf16_avx512;