Re-enable fast tanh approximation

This commit is contained in:
Mike Oliphant
2023-04-03 15:10:33 -07:00
parent 9065de91c0
commit 43f12ad73b
3 changed files with 5 additions and 1 deletions
+3
View File
@@ -3,10 +3,13 @@
#include <utility>
#include "nam_plugin.h"
#include "activations.h"
namespace NAM {
Plugin::Plugin()
{
// Turn on fast tanh approximation
activations::Activation::enable_fast_tanh();
}
bool Plugin::initialize(double rate, const LV2_Feature* const* features) noexcept