Home
last modified time | relevance | path

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

/frameworks/ml/nn/common/operations/
DUnidirectionalSequenceLSTM.cpp52 constexpr uint32_t kCellToOutputWeightsTensor = 11; // Optional variable
109 params.use_peephole = hasTensor(context, kCellToOutputWeightsTensor); in getLSTMParams()
267 if (hasTensor(context, kCellToOutputWeightsTensor)) { in prepare()
268 const Shape cellToOutputShape = context->getInputShape(kCellToOutputWeightsTensor); in prepare()
278 hasTensor(context, kCellToOutputWeightsTensor)) || in prepare()
281 !hasTensor(context, kCellToOutputWeightsTensor)); in prepare()
437 context->getInputBuffer<float>(kCellToOutputWeightsTensor), in execute()
490 context->getInputBuffer<_Float16>(kCellToOutputWeightsTensor), in execute()
DQLSTM.cpp51 constexpr uint32_t kCellToOutputWeightsTensor = 11; variable
247 if (hasTensor(context, kCellToOutputWeightsTensor)) { in prepare()
248 const Shape cellToOutputShape = context->getInputShape(kCellToOutputWeightsTensor); in prepare()
258 hasTensor(context, kCellToOutputWeightsTensor)) || in prepare()
261 !hasTensor(context, kCellToOutputWeightsTensor)); in prepare()
384 const Shape cellToOutputShape = context->getInputShape(kCellToOutputWeightsTensor); in execute()
444 reinterpret_cast<const int16_t*>(context->getInputBuffer(kCellToOutputWeightsTensor)); in execute()
DLSTM.h75 static constexpr int kCellToOutputWeightsTensor = 11; // Optional variable
DLayerNormLSTMTest.cpp239 execution.setInput(LSTMCell::kCellToOutputWeightsTensor, nullptr, 0); in Invoke()
DLSTMTest.cpp228 execution.setInput(LSTMCell::kCellToOutputWeightsTensor, nullptr, 0); in Invoke()
DLSTM.cpp73 GetInput(operation, operands, kCellToOutputWeightsTensor); // optional in LSTMCell()