Home
last modified time | relevance | path

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

/frameworks/ml/nn/common/operations/
DQuantizedLSTM.h34 Shape* cellStateShape, Shape* outputShape);
DUnidirectionalSequenceLSTM.cpp321 const Shape cellStateShape = context->getInputShape(kCellStateInTensor); in prepare() local
322 NN_RET_CHECK_EQ(getNumberOfDimensions(cellStateShape), 2); in prepare()
323 NN_RET_CHECK_EQ(getSizeOfDimension(cellStateShape, 0), batchSize); in prepare()
324 NN_RET_CHECK_EQ(getSizeOfDimension(cellStateShape, 1), numCells); in prepare()
DQLSTM.cpp301 const Shape cellStateShape = context->getInputShape(kPrevCellStateTensor); in prepare() local
302 NN_RET_CHECK_EQ(getNumberOfDimensions(cellStateShape), 2); in prepare()
303 NN_RET_CHECK_EQ(getSizeOfDimension(cellStateShape, 0), batchSize); in prepare()
304 NN_RET_CHECK_EQ(getSizeOfDimension(cellStateShape, 1), numUnits); in prepare()
DLSTM.cpp304 Shape* scratchShape, Shape* outputStateShape, Shape* cellStateShape, in Prepare() argument
385 cellStateShape->type = inputShape.type; in Prepare()
386 cellStateShape->dimensions = {n_batch, n_cell}; in Prepare()
387 cellStateShape->offset = inputShape.offset; in Prepare()
388 cellStateShape->scale = inputShape.scale; in Prepare()
DLSTM.h54 Shape* outputStateShape, Shape* cellStateShape, Shape* outputShape);
/frameworks/ml/nn/common/
DCpuExecutor.cpp1100 Shape scratchShape, outputStateShape, cellStateShape, outputShape; in executeOperation() local
1104 &cellStateShape, &outputShape) && in executeOperation()
1107 setInfoAndAllocateIfNeeded(&cellStateOut, cellStateShape, &result) && in executeOperation()