Home
last modified time | relevance | path

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

/frameworks/ml/nn/common/operations/
DUnidirectionalSequenceLSTM.cpp63 constexpr uint32_t kProjectionBiasTensor = 17; // Optional variable
112 params.use_projection_bias = hasTensor(context, kProjectionBiasTensor); in getLSTMParams()
311 if (hasTensor(context, kProjectionBiasTensor)) { in prepare()
312 const Shape projectionBiasShape = context->getInputShape(kProjectionBiasTensor); in prepare()
448 context->getInputBuffer<float>(kProjectionBiasTensor), in execute()
501 context->getInputBuffer<_Float16>(kProjectionBiasTensor), in execute()
DLayerNormLSTMTest.cpp244 execution.setInput(LSTMCell::kProjectionBiasTensor, nullptr, 0); in Invoke()
248 execution.setInput(LSTMCell::kProjectionBiasTensor, nullptr, 0); in Invoke()
DQLSTM.cpp62 constexpr uint32_t kProjectionBiasTensor = 17; variable
291 if (hasTensor(context, kProjectionBiasTensor)) { in prepare()
292 const Shape projectionBiasShape = context->getInputShape(kProjectionBiasTensor); in prepare()
453 reinterpret_cast<const int32_t*>(context->getInputBuffer(kProjectionBiasTensor)); in execute()
DLSTMTest.cpp233 execution.setInput(LSTMCell::kProjectionBiasTensor, nullptr, 0); in Invoke()
237 execution.setInput(LSTMCell::kProjectionBiasTensor, nullptr, 0); in Invoke()
DLSTM.h86 static constexpr int kProjectionBiasTensor = 17; // Optional variable
DLSTM.cpp81 projection_bias_ = GetInput(operation, operands, kProjectionBiasTensor); // optional in LSTMCell()