Skip to content

sdatkinson/NeuralAmpModelerCore

Repository files navigation

NeuralAmpModelerCore

Core C++ DSP library for NAM plugins.

For an example how to use, see NeuralAmpModelerPlugin.

Testing

A workflow for testing the library is provided in .github/workflows/build.yml. You should be able to run it locally to test if you'd like.

Sharp edges

This library uses Eigen to do the linear algebra routines that its neural networks require. Since these models hold their parameters as eigen object members, there is a risk with certain compilers and compiler optimizations that their memory is not aligned properly. This can be worked around by providing two preprocessor macros: EIGEN_MAX_ALIGN_BYTES 0 and EIGEN_DONT_VECTORIZE, though this will probably harm performance. See Structs Having Eigen Members for more information. This is being tracked as Issue 67.