Home
last modified time | relevance | path

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

/packages/modules/NeuralNetworks/common/types/operations/src/
DMirrorPad.cpp57 const Shape outputTensorShape = context->getOutputShape(kOutputTensor); in validate() local
60 NN_RET_CHECK_EQ(inputTensorShape.scale, outputTensorShape.scale) in validate()
62 << " does not match output tensor scale " << outputTensorShape.scale; in validate()
63 NN_RET_CHECK_EQ(inputTensorShape.offset, outputTensorShape.offset) in validate()
65 << " does not match output tensor offset " << outputTensorShape.offset; in validate()
77 if (hasKnownRank(outputTensorShape)) { in validate()
79 auto outputTensorRank = getNumberOfDimensions(outputTensorShape); in validate()
DReverse.cpp54 const Shape outputTensorShape = context->getOutputShape(kOutputTensor); in validate() local
57 NN_RET_CHECK_EQ(inputTensorShape.scale, outputTensorShape.scale) in validate()
59 << " does not match output tensor scale " << outputTensorShape.scale; in validate()
60 NN_RET_CHECK_EQ(inputTensorShape.offset, outputTensorShape.offset) in validate()
62 << " does not match output tensor offset " << outputTensorShape.offset; in validate()
65 auto outputTensorRank = getNumberOfDimensions(outputTensorShape); in validate()
/packages/modules/NeuralNetworks/common/cpu_operations/
DBatchMatmul.cpp223 Shape outputTensorShape = context->getOutputShape(kOutputTensor); in prepare() local
224 outputTensorShape.dimensions = in prepare()
226 return context->setOutputShape(kOutputTensor, outputTensorShape); in prepare()