Home
last modified time | relevance | path

Searched refs:kProjectionBiasTensor (Results 1 – 5 of 5) sorted by relevance

/frameworks/ml/nn/common/operations/
DUnidirectionalSequenceLSTM.cpp61 constexpr uint32_t kProjectionBiasTensor = 17; // Optional variable
105 params.use_projection_bias = hasTensor(context, kProjectionBiasTensor); in getLSTMParams()
298 if (hasTensor(context, kProjectionBiasTensor)) { in prepare()
299 const Shape projectionBiasShape = context->getInputShape(kProjectionBiasTensor); in prepare()
405 context->getInputBuffer<float>(kProjectionBiasTensor), in execute()
447 context->getInputBuffer<_Float16>(kProjectionBiasTensor), in execute()
DLayerNormLSTMTest.cpp245 execution.setInput(LSTMCell::kProjectionBiasTensor, nullptr, 0); in Invoke()
249 execution.setInput(LSTMCell::kProjectionBiasTensor, nullptr, 0); in Invoke()
DLSTMTest.cpp229 execution.setInput(LSTMCell::kProjectionBiasTensor, nullptr, 0); in Invoke()
233 execution.setInput(LSTMCell::kProjectionBiasTensor, nullptr, 0); in Invoke()
DLSTM.h84 static constexpr int kProjectionBiasTensor = 17; // Optional variable
DLSTM.cpp76 projection_bias_ = GetInput(operation, operands, kProjectionBiasTensor); // optional in LSTMCell()