Home
last modified time | relevance | path

Searched refs:kCellStateOutTensor (Results 1 – 8 of 8) sorted by relevance

/frameworks/ml/nn/common/operations/
DUnidirectionalSequenceLSTM.cpp87 constexpr uint32_t kCellStateOutTensor = 2; variable
379 NN_RET_CHECK(!context->isOmittedOutput(kCellStateOutTensor)); in prepare()
391 NN_RET_CHECK(context->setOutputShape(kCellStateOutTensor, cellStateOutTensor)); in prepare()
414 cellStateOut = context->getOutputBuffer<float>(kCellStateOutTensor); in execute()
466 cellStateOut = context->getOutputBuffer<_Float16>(kCellStateOutTensor); in execute()
DQuantizedLSTM.h61 static constexpr int kCellStateOutTensor = 0; variable
DQLSTM.cpp95 constexpr uint32_t kCellStateOutTensor = 1; variable
357 Shape cellStateOutShape = context->getOutputShape(kCellStateOutTensor); in prepare()
361 context->setOutputShape(kCellStateOutTensor, cellStateOutShape) && in prepare()
463 reinterpret_cast<int16_t*>(context->getOutputBuffer(kCellStateOutTensor)); in execute()
DLSTM.h104 static constexpr int kCellStateOutTensor = 2; variable
DQuantizedLSTMTest.cpp140 setOutputTensor(&execution, QuantizedLSTMCell::kCellStateOutTensor, &cellStateOut_), in invoke()
DQuantizedLSTM.cpp244 cellStateOut_ = GetOutput(operation, operands, kCellStateOutTensor); in QuantizedLSTMCell()
DLSTM.cpp125 cell_state_out_ = GetOutput(operation, operands, kCellStateOutTensor); in LSTMCell()
/frameworks/ml/nn/common/
DCpuExecutor.cpp1097 RunTimeOperandInfo& cellStateOut = operands[outs[LSTMCell::kCellStateOutTensor]]; in executeOperation()
1675 operands[outs[QuantizedLSTMCell::kCellStateOutTensor]]; in executeOperation()