Home
last modified time | relevance | path

Searched refs:oldShape (Results 1 – 2 of 2) sorted by relevance

/packages/modules/NeuralNetworks/common/
DOperationsExecutionUtils.cpp275 uint8_t requantize<uint8_t>(uint8_t value, const Shape& oldShape, const Shape& newShape) { in requantize() argument
276 double doubleValue = (value - oldShape.offset) * oldShape.scale; in requantize()
284 int8_t requantize<int8_t>(int8_t value, const Shape& oldShape, const Shape& newShape) { in requantize() argument
285 double doubleValue = (value - oldShape.offset) * oldShape.scale; in requantize()
/packages/modules/NeuralNetworks/common/include/
DOperationsExecutionUtils.h219 T requantize(T value, const Shape& oldShape, const Shape& newShape);