MCPcopy Create free account
hub / github.com/ARM-software/armnn / CopyVector

Function CopyVector

src/backends/reference/workloads/LstmUtils.cpp:244–256  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

242}
243
244void CopyVector(armnn::Decoder<float>& vector,
245 uint32_t vSize,
246 armnn::Encoder<float>& outResult)
247{
248 for (uint32_t v = 0; v < vSize; v++)
249 {
250 outResult.Set(vector.Get());
251 ++outResult;
252 ++vector;
253 }
254 outResult -= vSize;
255 vector -= vSize;
256}
257
258void SetActivationParameters(uint32_t activation,
259 armnn::ActivationFunction& outArmnnActivation,

Callers 2

LstmImplFunction · 0.85
ExecuteMethod · 0.85

Calls 2

SetMethod · 0.45
GetMethod · 0.45

Tested by

no test coverage detected