MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / dequantize_qsymm16

Function dequantize_qsymm16

arm_compute/core/QuantizationInfo.h:550–553  ·  view source on GitHub ↗

Dequantize a value given a 16-bit symmetric quantization scheme * * @param[in] value Value to dequantize * @param[in] qinfo Quantization information to use for dequantizing * * @return Dequantized value */

Source from the content-addressed store, hash-verified

548 * @return Dequantized value
549 */
550inline float dequantize_qsymm16(int16_t value, const UniformQuantizationInfo &qinfo)
551{
552 return value * qinfo.scale;
553}
554
555/** Quantize a value given a 16-bit symmetric quantization scheme
556 *

Callers 5

convert_from_symmetricFunction · 0.85
dequantizeFunction · 0.85

Calls 1

uniformMethod · 0.45

Tested by

no test coverage detected