Home
last modified time | relevance | path

Searched refs:stateShape (Results 1 – 3 of 3) sorted by relevance

/frameworks/ml/nn/common/operations/
DSVDF.cpp51 bool SVDF::Prepare(const Operation& operation, RunTimeOperandInfo* operands, Shape* stateShape, in Prepare() argument
98 stateShape->type = inputShape.type; in Prepare()
99 stateShape->dimensions = {batch_size, memory_size * num_filters}; in Prepare()
100 stateShape->offset = inputShape.offset; in Prepare()
101 stateShape->scale = inputShape.scale; in Prepare()
DSVDF.h44 Shape* stateShape, Shape* outputShape);
/frameworks/ml/nn/common/
DCpuExecutor.cpp1144 Shape stateShape, outputShape; in executeOperation() local
1147 success = SVDF::Prepare(operation, operands, &stateShape, &outputShape) && in executeOperation()
1148 setInfoAndAllocateIfNeeded(&stateOut, stateShape, &result) && in executeOperation()