mirror of https://git.ffmpeg.org/ffmpeg.git
tests/checkasm/checkasm: Provide verbose failure information on float_near_abs_eps() failures
This will make understanding failures and adjusting EPS easier Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
23e994ca49
commit
18d6ff2b42
|
@ -294,8 +294,12 @@ int float_near_ulp_array(const float *a, const float *b, unsigned max_ulp,
|
|||
int float_near_abs_eps(float a, float b, float eps)
|
||||
{
|
||||
float abs_diff = fabsf(a - b);
|
||||
if (abs_diff < eps)
|
||||
return 1;
|
||||
|
||||
return abs_diff < eps;
|
||||
fprintf(stderr, "test failed comparing %g with %g (abs diff=%g with EPS=%g)\n", a, b, abs_diff, eps);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int float_near_abs_eps_array(const float *a, const float *b, float eps,
|
||||
|
|
Loading…
Reference in New Issue