2013-03-25 12:04:10 +00:00
|
|
|
/*
|
2020-01-28 14:32:34 +00:00
|
|
|
* (C) Copyright 2005- ECMWF.
|
2013-03-25 12:04:10 +00:00
|
|
|
*
|
|
|
|
* This software is licensed under the terms of the Apache Licence Version 2.0
|
|
|
|
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
*
|
|
|
|
* In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
|
|
|
|
* virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
|
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
2017-07-14 08:57:57 +00:00
|
|
|
#include <float.h>
|
2013-03-25 12:04:10 +00:00
|
|
|
|
|
|
|
#include "grib_api_internal.h"
|
|
|
|
|
2020-01-29 12:05:02 +00:00
|
|
|
double min = -1.0000000001;
|
|
|
|
double max = -1.00000000001;
|
|
|
|
double scale;
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2020-01-29 12:05:02 +00:00
|
|
|
typedef unsigned long (*ieee_to_long_proc)(double);
|
|
|
|
typedef double (*long_to_ieee_proc)(unsigned long);
|
2017-07-13 17:05:50 +00:00
|
|
|
|
2017-08-25 16:30:00 +00:00
|
|
|
#if 0
|
|
|
|
static void test(unsigned long input, ieee_to_long_proc ieee_to_long, long_to_ieee_proc long_to_ieee)
|
2017-07-13 17:05:50 +00:00
|
|
|
{
|
|
|
|
double x1 = long_to_ieee(input);
|
|
|
|
unsigned long num2 = ieee_to_long(x1);
|
|
|
|
printf("\nconv input=%ld to double=%.10f (%g) and back => %ld\n", input, x1, x1, num2);
|
|
|
|
if (num2!=input) printf("ERROR: input=%ld not equal!!!\n", input);
|
|
|
|
}
|
|
|
|
|
2013-03-25 12:04:10 +00:00
|
|
|
double p(double ref1,double ref2)
|
|
|
|
{
|
|
|
|
double scale = (max-ref1) / 65535;
|
|
|
|
|
|
|
|
unsigned long pack = (unsigned long)(((max - ref1)/scale)+0.5);
|
|
|
|
double unpack = pack*scale + ref2;
|
|
|
|
|
|
|
|
printf(" max: %04X %0.20f %0.20f\n",pack,unpack,max-unpack);
|
|
|
|
|
|
|
|
pack = (unsigned long)(((min- ref1)/scale)+0.5);
|
|
|
|
unpack = pack*scale + ref2;
|
|
|
|
printf(" min: %04X %0.20f %0.20f\n",pack,unpack,min-unpack);
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
return unpack;
|
|
|
|
}
|
2017-07-13 17:05:50 +00:00
|
|
|
#endif
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2017-07-14 08:57:57 +00:00
|
|
|
/* generate a random floating point number from min to max */
|
2017-08-25 16:30:00 +00:00
|
|
|
static double randfrom(double minimum, double maximum)
|
2017-07-14 08:57:57 +00:00
|
|
|
{
|
2017-08-25 16:30:00 +00:00
|
|
|
double range = (maximum - minimum);
|
2020-01-29 12:05:02 +00:00
|
|
|
double div = RAND_MAX / range;
|
2017-08-25 16:30:00 +00:00
|
|
|
return minimum + (rand() / div);
|
2017-07-14 08:57:57 +00:00
|
|
|
}
|
2017-07-14 14:31:43 +00:00
|
|
|
/* Return 1 on success, 0 on failure */
|
2017-08-25 16:30:00 +00:00
|
|
|
static int test_doubles(ieee_to_long_proc ieee_to_long, long_to_ieee_proc long_to_ieee)
|
2017-07-14 08:57:57 +00:00
|
|
|
{
|
|
|
|
const double tolerance = 1e-7;
|
|
|
|
const double increment = 1;
|
|
|
|
const double max_value = 10 * 1000 * 1000;
|
|
|
|
const double min_value = -max_value;
|
2020-01-29 12:05:02 +00:00
|
|
|
double d = max_value;
|
|
|
|
int num_errors = 0;
|
|
|
|
int num_trials = 0;
|
|
|
|
double max_reldiff = -DBL_MAX;
|
2017-07-14 08:57:57 +00:00
|
|
|
|
|
|
|
while (d > min_value) {
|
2020-01-29 12:05:02 +00:00
|
|
|
double start = randfrom(0.7, 1) * d;
|
2017-07-14 08:57:57 +00:00
|
|
|
unsigned long a = ieee_to_long(start);
|
|
|
|
double end = long_to_ieee(a);
|
|
|
|
num_trials++;
|
|
|
|
if (start != 0.0) {
|
2020-01-29 12:05:02 +00:00
|
|
|
double reldiff = fabs(end - start) / start;
|
2017-07-14 08:57:57 +00:00
|
|
|
if (reldiff > tolerance) {
|
|
|
|
printf("Error: %.10f (diff=%.10f)\n", start, reldiff);
|
2020-01-29 12:05:02 +00:00
|
|
|
num_errors++;
|
|
|
|
}
|
|
|
|
else {
|
2018-07-16 08:57:10 +00:00
|
|
|
/*printf("Success: %.10f (diff=%.10f)\n", start, reldiff);*/
|
2017-07-14 08:57:57 +00:00
|
|
|
}
|
|
|
|
if (reldiff > max_reldiff) max_reldiff = reldiff;
|
|
|
|
}
|
|
|
|
d -= increment;
|
|
|
|
}
|
2020-01-29 12:05:02 +00:00
|
|
|
printf("trials = %d, errors = %d\n", num_trials, num_errors);
|
2017-07-14 08:57:57 +00:00
|
|
|
printf("max reldiff = %g\n", max_reldiff);
|
2020-01-29 12:05:02 +00:00
|
|
|
return num_errors == 0 ? 1 : 0;
|
2017-07-14 08:57:57 +00:00
|
|
|
}
|
|
|
|
|
2020-01-29 12:05:02 +00:00
|
|
|
int main(int argc, char* argv[])
|
2013-03-25 12:04:10 +00:00
|
|
|
{
|
|
|
|
#if 1
|
2020-01-29 12:05:02 +00:00
|
|
|
unsigned long i = 0;
|
|
|
|
printf("Test doubles with grib_ieee_to_long/grib_long_to_ieee...\n");
|
2024-12-20 12:58:07 +00:00
|
|
|
ECCODES_ASSERT(test_doubles(grib_ieee_to_long, grib_long_to_ieee) == 1);
|
2017-07-14 08:57:57 +00:00
|
|
|
|
2020-01-29 12:05:02 +00:00
|
|
|
printf("Test doubles with grib_ieee64_to_long/grib_long_to_ieee64...\n");
|
2024-12-20 12:58:07 +00:00
|
|
|
ECCODES_ASSERT(test_doubles(grib_ieee64_to_long, grib_long_to_ieee64) == 1);
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2017-07-14 14:31:43 +00:00
|
|
|
printf("Test integers...\n");
|
2020-01-29 12:05:02 +00:00
|
|
|
/* test(3242539564, grib_ieee_to_long, grib_long_to_ieee); This fails! */
|
2024-12-20 12:58:07 +00:00
|
|
|
ECCODES_ASSERT(grib_ieee_to_long(grib_long_to_ieee(i)) == i);
|
2020-01-29 12:05:02 +00:00
|
|
|
|
|
|
|
/* The minimum value for which we can convert a long to ieee and back is 0x800000 */
|
|
|
|
/* The maximum value for which we can convert a long to ieee and back is 0x7f800000 */
|
|
|
|
for (i = 0x800000; i < 0x7f800000; i++) {
|
|
|
|
/*unsigned long j = i | 0x80000000;*/
|
|
|
|
|
|
|
|
if (grib_ieee_to_long(grib_long_to_ieee(i)) != i) {
|
|
|
|
printf("i=%lu i=%lx e=%g x=%lx\n", i, i, grib_long_to_ieee(i), grib_ieee_to_long(grib_long_to_ieee(i)));
|
2024-12-20 12:58:07 +00:00
|
|
|
/*ECCODES_ASSERT(grib_ieee_to_long(grib_long_to_ieee(i)) == i);*/
|
|
|
|
ECCODES_ASSERT(0);
|
2020-01-29 12:05:02 +00:00
|
|
|
}
|
|
|
|
/*if(grib_ieee_to_long(grib_long_to_ieee(j)) != j)
|
2017-07-13 17:05:50 +00:00
|
|
|
{
|
|
|
|
printf("j=%ld i=%lx e=%g x=%lx\n",j,j,grib_long_to_ieee(j),grib_ieee_to_long(grib_long_to_ieee(j)));
|
|
|
|
}
|
2017-07-14 14:31:43 +00:00
|
|
|
if ((i%1000000) == 0) {
|
|
|
|
printf("i = %08lx(%ld) %08lx(%ld) %g %g\n", i,i,j,j,grib_long_to_ieee(i),grib_long_to_ieee(j));
|
|
|
|
}*/
|
2020-01-29 12:05:02 +00:00
|
|
|
}
|
2013-03-25 12:04:10 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2020-01-29 12:05:02 +00:00
|
|
|
double ref1 = grib_long_to_ieee(grib_ieee_to_long(min));
|
|
|
|
double ref2 = grib_nearest_smaller_ieee_float(min);
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2020-01-29 12:05:02 +00:00
|
|
|
double a = p(min, ref1);
|
|
|
|
double b = p(min, ref2);
|
|
|
|
double c = p(ref1, ref1);
|
|
|
|
double d = p(ref2, ref2);
|
2013-03-25 12:04:10 +00:00
|
|
|
|
2024-12-20 12:58:07 +00:00
|
|
|
ECCODES_ASSERT(min < max);
|
2013-03-25 12:04:10 +00:00
|
|
|
|
|
|
|
#endif
|
2017-07-13 17:05:50 +00:00
|
|
|
printf("ALL DONE\n");
|
2020-01-29 12:05:02 +00:00
|
|
|
return 0;
|
2013-03-25 12:04:10 +00:00
|
|
|
}
|