MCPcopy Create free account
hub / github.com/GuitarML/NeuralPi / process

Method process

Source/RTNeuralLSTM.cpp:89–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

87}
88
89void RT_LSTM::process(const float* inData, float* outData, int numSamples)
90{
91 for (int i = 0; i < numSamples; ++i)
92 outData[i] = model.forward(inData + i) + inData[i];
93}
94
95void RT_LSTM::process(const float* inData, float param, float* outData, int numSamples)
96{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected