Rounding parameter from float to int for quantization

We have not fully aligned and not consistent behaviour in regard of float rounding to int values for quantization.

  • qnn.op.quantize does not have round param and uses tir.round that rounds to nearest
  • qnn.op.requantize has round param which might accept two values “UPWARD” (default) and "TONEAREST.

UPWARD that TVM has is something very artificial that might have sense for quantization and improving accuracy but is not described in standard, is not supported by hardware and is not used by any deep learning frameworks. Having this TVM “UPWARD” currently as default parameter, requires to implement more actions and leads to performance implications.

Proposal:

  1. Remove round parameter from qnn.op.requantize at all
  2. Or standardize the rounding in TVM, add it to qnn.op.quantize, make default value that something is supported by hardware natively like “TONEAREST” or “FLOOR”

More details: The current TVM requantize UPWARD mode is defined follow way:

    rounding : string, optional
        Defines the rounding direction when the value is midway between two
        representable values.

I.e. it affect only numbers having x.5 values, especial for negative numbers. It is not matched to any round standard in spite of Rounding - Wikipedia describes many approaches. TVM has new special one.

How requantize is called from TVM importers:

  • mxnet: calls 4 times, no passing of rounding param, i.e. default “UPWARD” is used
  • onnx: calls twice, once without rounding, second time with rounding == “TONEAREST”
  • qnn_torch: one call without rounding param passing
  • tflite: 9 calls without rounding param passing

If we take a look how rounding happens/defined in frameworks, then in most cases it is not standardized, only onnx defines explicitly. Other can use different round strategy for different implementations depending on hardware