]> git.proxmox.com Git - mirror_qemu.git/commit - tests/qht-bench.c
tests/qht-bench: Adjust threshold computation
authorRichard Henderson <richard.henderson@linaro.org>
Fri, 26 Jun 2020 20:09:50 +0000 (13:09 -0700)
committerAlex Bennée <alex.bennee@linaro.org>
Sat, 11 Jul 2020 14:53:00 +0000 (15:53 +0100)
commit78441c04ca4356e40620bbd24dffffdee3978a22
tree19f776f50ff859bf6e521b28278e1088d09606b1
parentd11f824991749c4b28c3c08ca737e82d0d9d01e6
tests/qht-bench: Adjust threshold computation

In 06c4cc3660b3, we split the multiplication in two parts to avoid
a clang warning.  But because double still rounds to 53 bits, this
does not provide additional precision beyond multiplication by
nextafter(0x1p64, 0), the largest representable value smaller
than 2**64.

However, since we have eliminated 1.0, mutiplying by 2**64 produces
a better distribution of input values to the output values.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20200626200950.1015121-3-richard.henderson@linaro.org>
tests/qht-bench.c