according to the code. The quantization formula for true quant is
int32_t res = round_half_even(value / scale) + zero_point;
and according to the document, the formula for fake quant is
int32_t res = round_half_even(value / scale + zero_point);
Why is there a difference between these two?