Home
last modified time | relevance | path

Searched refs:kRecurrentToInputWeightsTensor (Results 1 – 9 of 9) sorted by relevance

/frameworks/ml/nn/common/operations/
DUnidirectionalSequenceLSTM.cpp44 constexpr uint32_t kRecurrentToInputWeightsTensor = 5; // Optional variable
231 if (hasTensor(context, kRecurrentToInputWeightsTensor)) { in prepare()
232 const Shape recurrentToInputShape = context->getInputShape(kRecurrentToInputWeightsTensor); in prepare()
250 hasTensor(context, kRecurrentToInputWeightsTensor)) || in prepare()
252 !hasTensor(context, kRecurrentToInputWeightsTensor)); in prepare()
430 context->getInputBuffer<float>(kRecurrentToInputWeightsTensor), in execute()
483 context->getInputBuffer<_Float16>(kRecurrentToInputWeightsTensor), in execute()
DQLSTM.cpp42 constexpr uint32_t kRecurrentToInputWeightsTensor = 5; variable
211 if (hasTensor(context, kRecurrentToInputWeightsTensor)) { in prepare()
212 const Shape recurrentToInputShape = context->getInputShape(kRecurrentToInputWeightsTensor); in prepare()
230 hasTensor(context, kRecurrentToInputWeightsTensor)) || in prepare()
232 !hasTensor(context, kRecurrentToInputWeightsTensor)); in prepare()
370 context->getInputShape(kRecurrentToInputWeightsTensor); in execute()
411 context->getInputBuffer(kRecurrentToInputWeightsTensor)); in execute()
DQuantizedLSTM.h46 static constexpr int kRecurrentToInputWeightsTensor = 5; variable
DQuantizedLSTM.cpp231 recurrentToInputWeights_ = GetInput(operation, operands, kRecurrentToInputWeightsTensor); in QuantizedLSTMCell()
286 auto recurrentToInputWeights = GetInput(operation, operands, kRecurrentToInputWeightsTensor); in prepare()
DLSTM.h67 static constexpr int kRecurrentToInputWeightsTensor = 5; // Optional variable
DLayerNormLSTMTest.cpp229 execution.setInput(LSTMCell::kRecurrentToInputWeightsTensor, nullptr, 0); in Invoke()
DQuantizedLSTMTest.cpp110 ASSERT_EQ(setInputTensor(&execution, QuantizedLSTMCell::kRecurrentToInputWeightsTensor, in invoke()
DLSTMTest.cpp218 execution.setInput(LSTMCell::kRecurrentToInputWeightsTensor, nullptr, 0); in Invoke()
DLSTM.cpp64 GetInput(operation, operands, kRecurrentToInputWeightsTensor); // optional in LSTMCell()