mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
9380790ea8
re: The current netcdf-c release has some problems with the mingw platform on windows. Mostly they are path issues. Changes to support mingw+msys2: ------------------------------- * Enable option of looking into the windows registry to find the mingw root path. In aid of proper path handling. * Add mingw+msys as a specific platform in configure.ac and move testing of the platform to the front so it is available early. * Handle mingw X libncpoco (dynamic loader) properly even though mingw does not yet support it. * Handle mingw X plugins properly even though mingw does not yet support it. * Alias pwd='pwd -W' to better handle paths in shell scripts. * Plus a number of other minor compile irritations. * Disallow the use of multiple nc_open's on the same file for windows (and mingw) because windows does not seem to handle these properly. Not sure why we did not catch this earlier. * Add mountpoint info to dpathmgr.c to help support mingw. * Cleanup dpathmgr conversions. Known problems: --------------- * I have not been able to get shared libraries to work, so plugins/filters must be disabled. * There is some kind of problem with libcurl that I have not solved, so all uses of libcurl (currently DAP+Byterange) must be disabled. Misc. other fixes: ------------------ * Cleanup the relationship between ENABLE_PLUGINS and various other flags in CMakeLists.txt and configure.ac. * Re-arrange the TESTDIRS order in Makefile.am. * Add pseudo-breakpoint to nclog.[ch] for debugging. * Improve the documentation of the path manager code in ncpathmgr.h * Add better support for relative paths in dpathmgr.c * Default the mode args to NCfopen to include "b" (binary) for windows. * Add optional debugging output in various places. * Make sure that everything builds with plugins disabled. * Fix numerous (s)printf inconsistencies betweenb the format spec and the arguments.
841 lines
33 KiB
C
841 lines
33 KiB
C
/* This is part of the netCDF package.
|
|
Copyright 2021 University Corporation for Atmospheric Research/Unidata
|
|
See COPYRIGHT file for conditions of use.
|
|
|
|
Test quantization of netcdf-4 variables. Quantization is the
|
|
zeroing-out of bits in float or double data beyond a desired
|
|
precision.
|
|
|
|
Ed Hartnett, 8/19/21
|
|
*/
|
|
|
|
#include <nc_tests.h>
|
|
#include "err_macros.h"
|
|
#include "netcdf.h"
|
|
|
|
#define TEST "tst_quantize"
|
|
#define FILE_NAME "tst_quantize.nc"
|
|
#define NDIM1 1
|
|
#define DIM_NAME_1 "meters_along_canal"
|
|
#define DIM_LEN_3 3
|
|
#define DIM_LEN_1 1
|
|
#define DIM_LEN_5 5
|
|
#define DIM_LEN_8 8
|
|
#define VAR_NAME_1 "Amsterdam_houseboat_location"
|
|
#define VAR_NAME_2 "Amsterdam_street_noise_decibels"
|
|
#define NSD_3 3
|
|
#define NSD_9 9
|
|
|
|
/* This var used to help print a float in hex. */
|
|
char pf_str[20];
|
|
|
|
/* This struct allows us to treat float as uint32_t
|
|
* types. */
|
|
union FU {
|
|
float f;
|
|
uint32_t u;
|
|
};
|
|
|
|
/* This struct allows us to treat double points as uint64_t
|
|
* types. */
|
|
union DU {
|
|
double d;
|
|
uint64_t u;
|
|
};
|
|
|
|
/* This function prints a float as hex. */
|
|
char *
|
|
pf(float myf)
|
|
{
|
|
union {
|
|
float f;
|
|
uint32_t u;
|
|
} fu;
|
|
fu.f = myf;
|
|
sprintf(pf_str, "0x%x", fu.u);
|
|
return pf_str;
|
|
}
|
|
|
|
/* This function prints a double as hex. */
|
|
char *
|
|
pd(double myd)
|
|
{
|
|
union {
|
|
double d;
|
|
uint64_t u;
|
|
} du;
|
|
du.d = myd;
|
|
sprintf(pf_str, "0x%lx", (unsigned long)du.u);
|
|
return pf_str;
|
|
}
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
printf("\n*** Testing netcdf-4 variable quantization functions.\n");
|
|
printf("**** testing quantization setting and error conditions...");
|
|
{
|
|
int ncid, dimid, varid1, varid2;
|
|
int quantize_mode_in, nsd_in;
|
|
|
|
/* Create a netcdf classic file with one var. Attempt
|
|
* quantization. It will not work. */
|
|
if (nc_create(FILE_NAME, NC_CLOBBER, &ncid)) ERR;
|
|
if (nc_def_dim(ncid, DIM_NAME_1, DIM_LEN_3, &dimid)) ERR;
|
|
if (nc_def_var(ncid, VAR_NAME_1, NC_FLOAT, NDIM1, &dimid, &varid1)) ERR;
|
|
if (nc_def_var_quantize(ncid, varid1, NC_QUANTIZE_BITGROOM, NSD_3) != NC_ENOTNC4) ERR;
|
|
if (nc_inq_var_quantize(ncid, varid1, &quantize_mode_in, &nsd_in) != NC_ENOTNC4) ERR;
|
|
if (nc_close(ncid)) ERR;
|
|
|
|
/* Create a netcdf-4 file with two vars. Attempt
|
|
* quantization. It will work, eventually... */
|
|
if (nc_create(FILE_NAME, NC_NETCDF4|NC_CLOBBER, &ncid)) ERR;
|
|
if (nc_def_dim(ncid, DIM_NAME_1, DIM_LEN_3, &dimid)) ERR;
|
|
if (nc_def_var(ncid, VAR_NAME_1, NC_FLOAT, NDIM1, &dimid, &varid1)) ERR;
|
|
if (nc_def_var(ncid, VAR_NAME_2, NC_DOUBLE, NDIM1, &dimid, &varid2)) ERR;
|
|
|
|
/* Bad varid. */
|
|
if (nc_def_var_quantize(ncid, NC_GLOBAL, NC_QUANTIZE_BITGROOM, NSD_3) != NC_EGLOBAL) ERR;
|
|
if (nc_def_var_quantize(ncid, varid2 + 1, NC_QUANTIZE_BITGROOM, NSD_3) != NC_ENOTVAR) ERR;
|
|
/* Invalid values. */
|
|
if (nc_def_var_quantize(ncid, varid1, NC_QUANTIZE_BITGROOM + 1, NSD_3) != NC_EINVAL) ERR;
|
|
if (nc_def_var_quantize(ncid, varid1, NC_QUANTIZE_BITGROOM, -1) != NC_EINVAL) ERR;
|
|
if (nc_def_var_quantize(ncid, varid1, NC_QUANTIZE_BITGROOM, NC_QUANTIZE_MAX_FLOAT_NSD + 1) != NC_EINVAL) ERR;
|
|
if (nc_def_var_quantize(ncid, varid2, NC_QUANTIZE_BITGROOM + 1, 3) != NC_EINVAL) ERR;
|
|
if (nc_def_var_quantize(ncid, varid2, NC_QUANTIZE_BITGROOM, -1) != NC_EINVAL) ERR;
|
|
if (nc_def_var_quantize(ncid, varid2, NC_QUANTIZE_BITGROOM, NC_QUANTIZE_MAX_DOUBLE_NSD + 1) != NC_EINVAL) ERR;
|
|
if (nc_def_var_quantize(ncid, varid2, NC_QUANTIZE_BITGROOM, 0) != NC_EINVAL) ERR;
|
|
|
|
/* This will work. */
|
|
if (nc_def_var_quantize(ncid, varid1, NC_QUANTIZE_BITGROOM, NSD_3)) ERR;
|
|
if (nc_inq_var_quantize(ncid, varid1, &quantize_mode_in, &nsd_in)) ERR;
|
|
if (quantize_mode_in != NC_QUANTIZE_BITGROOM) ERR;
|
|
if (nsd_in != NSD_3) ERR;
|
|
|
|
/* Wait, I changed my mind! Let's turn off quantization. */
|
|
if (nc_def_var_quantize(ncid, varid1, NC_NOQUANTIZE, 0)) ERR;
|
|
if (nc_inq_var_quantize(ncid, varid1, &quantize_mode_in, &nsd_in)) ERR;
|
|
if (quantize_mode_in != NC_NOQUANTIZE) ERR;
|
|
if (nsd_in != 0) ERR;
|
|
|
|
/* Changed my mind again, turn it on. */
|
|
if (nc_def_var_quantize(ncid, varid1, NC_QUANTIZE_BITGROOM, NSD_3)) ERR;
|
|
|
|
/* I changed my mind again! Turn it off! */
|
|
if (nc_def_var_quantize(ncid, varid1, NC_NOQUANTIZE, 0)) ERR;
|
|
if (nc_inq_var_quantize(ncid, varid1, &quantize_mode_in, &nsd_in)) ERR;
|
|
if (quantize_mode_in != NC_NOQUANTIZE) ERR;
|
|
if (nsd_in != 0) ERR;
|
|
|
|
/* Changed my mind again, turn it on. */
|
|
if (nc_def_var_quantize(ncid, varid1, NC_QUANTIZE_BITGROOM, NSD_3)) ERR;
|
|
|
|
/* This also will work for double. */
|
|
if (nc_def_var_quantize(ncid, varid2, NC_QUANTIZE_BITGROOM, NSD_9)) ERR;
|
|
if (nc_inq_var_quantize(ncid, varid2, &quantize_mode_in, &nsd_in)) ERR;
|
|
if (quantize_mode_in != NC_QUANTIZE_BITGROOM) ERR;
|
|
if (nsd_in != NSD_9) ERR;
|
|
|
|
/* End define mode. */
|
|
if (nc_enddef(ncid)) ERR;
|
|
|
|
/* This will not work, it's too late! */
|
|
if (nc_def_var_quantize(ncid, varid1, NC_QUANTIZE_BITGROOM, NSD_3) != NC_ELATEDEF) ERR;
|
|
|
|
/* Close the file. */
|
|
if (nc_close(ncid)) ERR;
|
|
|
|
/* Open the file and check. */
|
|
if (nc_open(FILE_NAME, NC_WRITE, &ncid)) ERR;
|
|
if (nc_inq_var_quantize(ncid, 0, &quantize_mode_in, &nsd_in)) ERR;
|
|
if (quantize_mode_in != NC_QUANTIZE_BITGROOM) ERR;
|
|
if (nsd_in != NSD_3) ERR;
|
|
if (nc_inq_var_quantize(ncid, 1, &quantize_mode_in, &nsd_in)) ERR;
|
|
if (quantize_mode_in != NC_QUANTIZE_BITGROOM) ERR;
|
|
if (nsd_in != NSD_9) ERR;
|
|
if (nc_close(ncid)) ERR;
|
|
}
|
|
SUMMARIZE_ERR;
|
|
|
|
#define NX_BIG 100
|
|
#define NY_BIG 100
|
|
#define NTYPES 9
|
|
#define VAR_NAME "Amsterdam_coffeeshop_location"
|
|
#define X_NAME "distance_from_center"
|
|
#define Y_NAME "distance_along_canal"
|
|
#define NDIM2 2
|
|
|
|
printf("**** testing quantization handling of non-floats...");
|
|
{
|
|
int ncid;
|
|
int dimid[NDIM2];
|
|
int varid;
|
|
int nsd_in, quantize_mode;
|
|
int nsd_out = 3;
|
|
char file_name[NC_MAX_NAME + 1];
|
|
int xtype[NTYPES] = {NC_CHAR, NC_SHORT, NC_INT, NC_BYTE, NC_UBYTE,
|
|
NC_USHORT, NC_UINT, NC_INT64, NC_UINT64};
|
|
int t;
|
|
|
|
for (t = 0; t < NTYPES; t++)
|
|
{
|
|
sprintf(file_name, "%s_bitgroom_type_%d.nc", TEST, xtype[t]);
|
|
|
|
/* Create file. */
|
|
if (nc_create(file_name, NC_NETCDF4, &ncid)) ERR;
|
|
if (nc_def_dim(ncid, X_NAME, NX_BIG, &dimid[0])) ERR;
|
|
if (nc_def_dim(ncid, Y_NAME, NY_BIG, &dimid[1])) ERR;
|
|
if (nc_def_var(ncid, VAR_NAME, xtype[t], NDIM2, dimid, &varid)) ERR;
|
|
|
|
/* Bitgroom filter returns NC_EINVAL because this is not an
|
|
* NC_FLOAT or NC_DOULBE. */
|
|
if (nc_def_var_quantize(ncid, varid, NC_QUANTIZE_BITGROOM, nsd_out) != NC_EINVAL) ERR;
|
|
if (nc_close(ncid)) ERR;
|
|
|
|
/* Check file. */
|
|
{
|
|
if (nc_open(file_name, NC_NETCDF4, &ncid)) ERR;
|
|
if (nc_inq_var_quantize(ncid, varid, &quantize_mode, &nsd_in)) ERR;
|
|
if (quantize_mode) ERR;
|
|
if (nc_close(ncid)) ERR;
|
|
}
|
|
}
|
|
}
|
|
SUMMARIZE_ERR;
|
|
printf("**** testing quantization of scalars...");
|
|
{
|
|
int ncid, varid1, varid2;
|
|
int quantize_mode_in, nsd_in;
|
|
float float_data[DIM_LEN_1] = {1.1111111};
|
|
double double_data[DIM_LEN_1] = {1.111111111111};
|
|
|
|
/* Create a netcdf-4 file with two scalar vars. */
|
|
if (nc_create(FILE_NAME, NC_NETCDF4|NC_CLOBBER, &ncid)) ERR;
|
|
if (nc_def_var(ncid, VAR_NAME_1, NC_FLOAT, 0, NULL, &varid1)) ERR;
|
|
if (nc_def_var(ncid, VAR_NAME_2, NC_DOUBLE, 0, NULL, &varid2)) ERR;
|
|
|
|
/* Turn on quantize for both vars. */
|
|
if (nc_def_var_quantize(ncid, varid1, NC_QUANTIZE_BITGROOM, NSD_3)) ERR;
|
|
if (nc_def_var_quantize(ncid, varid2, NC_QUANTIZE_BITGROOM, NSD_3)) ERR;
|
|
|
|
/* Write some data. */
|
|
if (nc_put_var_float(ncid, varid1, float_data)) ERR;
|
|
if (nc_put_var_double(ncid, varid2, double_data)) ERR;
|
|
|
|
/* Close the file. */
|
|
if (nc_close(ncid)) ERR;
|
|
|
|
{
|
|
float float_in;
|
|
double double_in;
|
|
union FU fin;
|
|
int nsd_att_in;
|
|
/* union FU fout; */
|
|
union DU dfin;
|
|
/* union DU dfout; */
|
|
|
|
/* Open the file and check metadata. */
|
|
if (nc_open(FILE_NAME, NC_WRITE, &ncid)) ERR;
|
|
if (nc_inq_var_quantize(ncid, 0, &quantize_mode_in, &nsd_in)) ERR;
|
|
if (quantize_mode_in != NC_QUANTIZE_BITGROOM || nsd_in != NSD_3) ERR;
|
|
if (nc_inq_var_quantize(ncid, 1, &quantize_mode_in, &nsd_in)) ERR;
|
|
if (quantize_mode_in != NC_QUANTIZE_BITGROOM || nsd_in != NSD_3) ERR;
|
|
|
|
/* Each var now has an attribute describing the quantize settings. */
|
|
if (nc_get_att_int(ncid, 0, NC_QUANTIZE_ATT_NAME, &nsd_att_in)) ERR;
|
|
if (nsd_att_in != NSD_3) ERR;
|
|
if (nc_get_att_int(ncid, 1, NC_QUANTIZE_ATT_NAME, &nsd_att_in)) ERR;
|
|
if (nsd_att_in != NSD_3) ERR;
|
|
|
|
/* Check the data. */
|
|
if (nc_get_var(ncid, varid1, &float_in)) ERR;
|
|
if (nc_get_var(ncid, varid2, &double_in)) ERR;
|
|
/* fout.f = float_data[0]; */
|
|
fin.f = float_in;
|
|
/* dfout.d = double_data[0]; */
|
|
dfin.d = double_in;
|
|
/* printf ("\nfloat_data: %10f : 0x%x float_data_in: %10f : 0x%x\n", */
|
|
/* float_data[0], fout.u, float_data[0], fin.u); */
|
|
if (fin.u != 0x3f8e3000) ERR;
|
|
/* printf ("\ndouble_data: %15g : 0x%16lx double_data_in: %15g : 0x%lx\n", */
|
|
/* double_data[0], dfout.u, double_data[0], dfin.u); */
|
|
if (dfin.u != 0x3ff1c60000000000) ERR;
|
|
|
|
/* Close the file again. */
|
|
if (nc_close(ncid)) ERR;
|
|
}
|
|
}
|
|
SUMMARIZE_ERR;
|
|
printf("**** testing quantization of one value...");
|
|
{
|
|
int ncid, dimid, varid1, varid2;
|
|
int quantize_mode_in, nsd_in;
|
|
float float_data[DIM_LEN_1] = {1.1111111};
|
|
double double_data[DIM_LEN_1] = {1.111111111111};
|
|
|
|
/* Create a netcdf-4 file with two vars. */
|
|
if (nc_create(FILE_NAME, NC_NETCDF4|NC_CLOBBER, &ncid)) ERR;
|
|
if (nc_def_dim(ncid, DIM_NAME_1, DIM_LEN_1, &dimid)) ERR;
|
|
if (nc_def_var(ncid, VAR_NAME_1, NC_FLOAT, NDIM1, &dimid, &varid1)) ERR;
|
|
if (nc_def_var(ncid, VAR_NAME_2, NC_DOUBLE, NDIM1, &dimid, &varid2)) ERR;
|
|
|
|
/* Turn on quantize for both vars. */
|
|
if (nc_def_var_quantize(ncid, varid1, NC_QUANTIZE_BITGROOM, NSD_3)) ERR;
|
|
if (nc_def_var_quantize(ncid, varid2, NC_QUANTIZE_BITGROOM, NSD_3)) ERR;
|
|
|
|
/* Write some data. */
|
|
if (nc_put_var_float(ncid, varid1, float_data)) ERR;
|
|
if (nc_put_var_double(ncid, varid2, double_data)) ERR;
|
|
|
|
/* Close the file. */
|
|
if (nc_close(ncid)) ERR;
|
|
|
|
{
|
|
float float_in;
|
|
double double_in;
|
|
union FU fin;
|
|
/* union FU fout; */
|
|
union DU dfin;
|
|
/* union DU dfout; */
|
|
|
|
/* Open the file and check metadata. */
|
|
if (nc_open(FILE_NAME, NC_WRITE, &ncid)) ERR;
|
|
if (nc_inq_var_quantize(ncid, 0, &quantize_mode_in, &nsd_in)) ERR;
|
|
if (quantize_mode_in != NC_QUANTIZE_BITGROOM || nsd_in != NSD_3) ERR;
|
|
if (nc_inq_var_quantize(ncid, 1, &quantize_mode_in, &nsd_in)) ERR;
|
|
if (quantize_mode_in != NC_QUANTIZE_BITGROOM || nsd_in != NSD_3) ERR;
|
|
|
|
/* Check the data. */
|
|
if (nc_get_var(ncid, varid1, &float_in)) ERR;
|
|
if (nc_get_var(ncid, varid2, &double_in)) ERR;
|
|
/* fout.f = float_data[0]; */
|
|
fin.f = float_in;
|
|
/* dfout.d = double_data[0]; */
|
|
dfin.d = double_in;
|
|
/* printf ("\nfloat_data: %10f : 0x%x float_data_in: %10f : 0x%x\n", */
|
|
/* float_data[0], fout.u, float_data[0], fin.u); */
|
|
if (fin.u != 0x3f8e3000) ERR;
|
|
/* printf ("\ndouble_data: %15g : 0x%16lx double_data_in: %15g : 0x%lx\n", */
|
|
/* double_data[0], dfout.u, double_data[0], dfin.u); */
|
|
if (dfin.u != 0x3ff1c60000000000) ERR;
|
|
|
|
/* Close the file again. */
|
|
if (nc_close(ncid)) ERR;
|
|
}
|
|
}
|
|
SUMMARIZE_ERR;
|
|
printf("**** testing more quantization values...");
|
|
{
|
|
int ncid, dimid, varid1, varid2;
|
|
int quantize_mode_in, nsd_in;
|
|
float float_data[DIM_LEN_5] = {1.11111111, 1.0, 9.99999999, 12345.67, .1234567};
|
|
double double_data[DIM_LEN_5] = {1.1111111, 1.0, 9.999999999, 1234567890.12345, 123456789012345.0};
|
|
int x;
|
|
|
|
/* Create a netcdf-4 file with two vars. */
|
|
if (nc_create(FILE_NAME, NC_NETCDF4|NC_CLOBBER, &ncid)) ERR;
|
|
if (nc_def_dim(ncid, DIM_NAME_1, DIM_LEN_5, &dimid)) ERR;
|
|
if (nc_def_var(ncid, VAR_NAME_1, NC_FLOAT, NDIM1, &dimid, &varid1)) ERR;
|
|
if (nc_def_var(ncid, VAR_NAME_2, NC_DOUBLE, NDIM1, &dimid, &varid2)) ERR;
|
|
|
|
/* Turn on quantize for both vars. */
|
|
if (nc_def_var_quantize(ncid, varid1, NC_QUANTIZE_BITGROOM, NSD_3)) ERR;
|
|
if (nc_def_var_quantize(ncid, varid2, NC_QUANTIZE_BITGROOM, NSD_3)) ERR;
|
|
|
|
/* Write some data. */
|
|
if (nc_put_var_float(ncid, varid1, float_data)) ERR;
|
|
if (nc_put_var_double(ncid, varid2, double_data)) ERR;
|
|
|
|
/* Close the file. */
|
|
if (nc_close(ncid)) ERR;
|
|
|
|
{
|
|
float float_in[DIM_LEN_5];
|
|
double double_in[DIM_LEN_5];
|
|
union FU {
|
|
float f;
|
|
uint32_t u;
|
|
};
|
|
|
|
union FU fin;
|
|
/* union FU fout; */
|
|
union FU xpect[DIM_LEN_5];
|
|
union DU dfin;
|
|
/* union DU dfout; */
|
|
union DU double_xpect[DIM_LEN_5];
|
|
xpect[0].u = 0x3f8e3000;
|
|
xpect[1].u = 0x3f800fff;
|
|
xpect[2].u = 0x41200000;
|
|
xpect[3].u = 0x4640efff;
|
|
xpect[4].u = 0x3dfcd000;
|
|
double_xpect[0].u = 0x3ff1c60000000000;
|
|
double_xpect[1].u = 0x3ff001ffffffffff;
|
|
double_xpect[2].u = 0x4023fe0000000000;
|
|
double_xpect[3].u = 0x41d265ffffffffff;
|
|
double_xpect[4].u = 0x42dc120000000000;
|
|
|
|
/* Open the file and check metadata. */
|
|
if (nc_open(FILE_NAME, NC_WRITE, &ncid)) ERR;
|
|
if (nc_inq_var_quantize(ncid, 0, &quantize_mode_in, &nsd_in)) ERR;
|
|
if (quantize_mode_in != NC_QUANTIZE_BITGROOM || nsd_in != NSD_3) ERR;
|
|
if (nc_inq_var_quantize(ncid, 1, &quantize_mode_in, &nsd_in)) ERR;
|
|
if (quantize_mode_in != NC_QUANTIZE_BITGROOM || nsd_in != NSD_3) ERR;
|
|
|
|
/* Check the data. */
|
|
if (nc_get_var(ncid, varid1, float_in)) ERR;
|
|
if (nc_get_var(ncid, varid2, double_in)) ERR;
|
|
/* printf("\n"); */
|
|
for (x = 0; x < DIM_LEN_5; x++)
|
|
{
|
|
/* fout.f = float_data[x]; */
|
|
fin.f = float_in[x];
|
|
/* printf ("float_data: %10f : 0x%x float_data_in: %10f : 0x%x\n", */
|
|
/* float_data[x], fout.u, float_data[x], fin.u); */
|
|
if (fin.u != xpect[x].u) ERR;
|
|
/* dfout.d = double_data[x]; */
|
|
dfin.d = double_in[x];
|
|
/* printf("double_data: %15g : 0x%16lx double_data_in: %15g : 0x%16lx\n", */
|
|
/* double_data[x], dfout.u, double_data[x], dfin.u); */
|
|
if (dfin.u != double_xpect[x].u) ERR;
|
|
}
|
|
|
|
/* Close the file again. */
|
|
if (nc_close(ncid)) ERR;
|
|
}
|
|
}
|
|
SUMMARIZE_ERR;
|
|
printf("**** testing quantization of one value with type conversion...");
|
|
{
|
|
int ncid, dimid, varid1, varid2;
|
|
int quantize_mode_in, nsd_in;
|
|
float float_data[DIM_LEN_1] = {1.1111111};
|
|
double double_data[DIM_LEN_1] = {1.111111111111};
|
|
|
|
/* Create a netcdf-4 file with two vars. */
|
|
if (nc_create(FILE_NAME, NC_NETCDF4|NC_CLOBBER, &ncid)) ERR;
|
|
if (nc_def_dim(ncid, DIM_NAME_1, DIM_LEN_1, &dimid)) ERR;
|
|
if (nc_def_var(ncid, VAR_NAME_1, NC_FLOAT, NDIM1, &dimid, &varid1)) ERR;
|
|
if (nc_def_var(ncid, VAR_NAME_2, NC_DOUBLE, NDIM1, &dimid, &varid2)) ERR;
|
|
|
|
/* Turn on quantize for both vars. */
|
|
if (nc_def_var_quantize(ncid, varid1, NC_QUANTIZE_BITGROOM, NSD_3)) ERR;
|
|
if (nc_def_var_quantize(ncid, varid2, NC_QUANTIZE_BITGROOM, NSD_3)) ERR;
|
|
|
|
/* Write some double data to float var. */
|
|
if (nc_put_var_double(ncid, varid1, double_data)) ERR;
|
|
|
|
/* Write some float data to double var. */
|
|
if (nc_put_var_float(ncid, varid2, float_data)) ERR;
|
|
|
|
/* Close the file. */
|
|
if (nc_close(ncid)) ERR;
|
|
|
|
{
|
|
float float_in;
|
|
double double_in;
|
|
union FU fin;
|
|
/* union FU fout; */
|
|
union DU dfin;
|
|
/* union DU dfout; */
|
|
int nsd_att_in;
|
|
|
|
/* Open the file and check metadata. */
|
|
if (nc_open(FILE_NAME, NC_WRITE, &ncid)) ERR;
|
|
if (nc_inq_var_quantize(ncid, 0, &quantize_mode_in, &nsd_in)) ERR;
|
|
if (quantize_mode_in != NC_QUANTIZE_BITGROOM || nsd_in != NSD_3) ERR;
|
|
if (nc_inq_var_quantize(ncid, 1, &quantize_mode_in, &nsd_in)) ERR;
|
|
if (quantize_mode_in != NC_QUANTIZE_BITGROOM || nsd_in != NSD_3) ERR;
|
|
|
|
/* Each var now has an attribute describing the quantize settings. */
|
|
if (nc_get_att_int(ncid, 0, NC_QUANTIZE_ATT_NAME, &nsd_att_in)) ERR;
|
|
if (nsd_att_in != NSD_3) ERR;
|
|
if (nc_get_att_int(ncid, 1, NC_QUANTIZE_ATT_NAME, &nsd_att_in)) ERR;
|
|
if (nsd_att_in != NSD_3) ERR;
|
|
|
|
/* Check the data. */
|
|
if (nc_get_var(ncid, varid1, &float_in)) ERR;
|
|
if (nc_get_var(ncid, varid2, &double_in)) ERR;
|
|
/* fout.f = (float)double_data[0]; */
|
|
fin.f = float_in;
|
|
/* dfout.d = float_data[0]; */
|
|
dfin.d = double_in;
|
|
/* printf ("\ndouble_data: %15g : 0x%x float_data_in: %10f : 0x%x\n", */
|
|
/* double_data[0], fout.u, float_in, fin.u); */
|
|
if (fin.u != 0x3f8e3000) ERR;
|
|
/* printf ("\nfloat_data: %15g : 0x%16lx double_data_in: %15g : 0x%lx\n", */
|
|
/* float_data[0], dfout.u, double_in, dfin.u); */
|
|
if (dfin.u != 0x3ff1c60000000000) ERR;
|
|
|
|
/* Close the file again. */
|
|
if (nc_close(ncid)) ERR;
|
|
}
|
|
}
|
|
SUMMARIZE_ERR;
|
|
printf("**** testing more quantization values with type conversion...");
|
|
{
|
|
int ncid, dimid, varid1, varid2;
|
|
int quantize_mode_in, nsd_in;
|
|
float float_data[DIM_LEN_5] = {1.11111111, 1.0, 9.99999999, 12345.67, .1234567};
|
|
double double_data[DIM_LEN_5] = {1.1111111, 1.0, 9.999999999, 1234567890.12345, 123456789012345.0};
|
|
int x;
|
|
|
|
/* Create a netcdf-4 file with two vars. */
|
|
if (nc_create(FILE_NAME, NC_NETCDF4|NC_CLOBBER, &ncid)) ERR;
|
|
if (nc_def_dim(ncid, DIM_NAME_1, DIM_LEN_5, &dimid)) ERR;
|
|
if (nc_def_var(ncid, VAR_NAME_1, NC_FLOAT, NDIM1, &dimid, &varid1)) ERR;
|
|
if (nc_def_var(ncid, VAR_NAME_2, NC_DOUBLE, NDIM1, &dimid, &varid2)) ERR;
|
|
|
|
/* Turn on quantize for both vars. */
|
|
if (nc_def_var_quantize(ncid, varid1, NC_QUANTIZE_BITGROOM, NSD_3)) ERR;
|
|
if (nc_def_var_quantize(ncid, varid2, NC_QUANTIZE_BITGROOM, NSD_3)) ERR;
|
|
|
|
/* Write some data. */
|
|
if (nc_put_var_double(ncid, varid1, double_data)) ERR;
|
|
if (nc_put_var_float(ncid, varid2, float_data)) ERR;
|
|
|
|
/* Close the file. */
|
|
if (nc_close(ncid)) ERR;
|
|
|
|
{
|
|
float float_in[DIM_LEN_5];
|
|
double double_in[DIM_LEN_5];
|
|
union FU {
|
|
float f;
|
|
uint32_t u;
|
|
};
|
|
|
|
union FU fin;
|
|
/* union FU fout; */
|
|
union FU xpect[DIM_LEN_5];
|
|
union DU dfin;
|
|
/* union DU dfout; */
|
|
union DU double_xpect[DIM_LEN_5];
|
|
xpect[0].u = 0x3f8e3000;
|
|
xpect[1].u = 0x3f800fff;
|
|
xpect[2].u = 0x41200000;
|
|
xpect[3].u = 0x4e932fff;
|
|
xpect[4].u = 0x56e09000;
|
|
double_xpect[0].u = 0x3ff1c60000000000;
|
|
double_xpect[1].u = 0x3ff001ffffffffff;
|
|
double_xpect[2].u = 0x4024000000000000;
|
|
double_xpect[3].u = 0x40c81dffffffffff;
|
|
double_xpect[4].u = 0x3fbf9a0000000000;
|
|
|
|
/* Open the file and check metadata. */
|
|
if (nc_open(FILE_NAME, NC_WRITE, &ncid)) ERR;
|
|
if (nc_inq_var_quantize(ncid, 0, &quantize_mode_in, &nsd_in)) ERR;
|
|
if (quantize_mode_in != NC_QUANTIZE_BITGROOM || nsd_in != NSD_3) ERR;
|
|
if (nc_inq_var_quantize(ncid, 1, &quantize_mode_in, &nsd_in)) ERR;
|
|
if (quantize_mode_in != NC_QUANTIZE_BITGROOM || nsd_in != NSD_3) ERR;
|
|
|
|
/* Check the data. */
|
|
if (nc_get_var(ncid, varid1, float_in)) ERR;
|
|
if (nc_get_var(ncid, varid2, double_in)) ERR;
|
|
/* printf("\n"); */
|
|
for (x = 0; x < DIM_LEN_5; x++)
|
|
{
|
|
/* fout.f = float_data[x]; */
|
|
fin.f = float_in[x];
|
|
/* printf ("float_data: %10f : 0x%x float_data_in: %10f : 0x%x\n", */
|
|
/* float_data[x], fout.u, float_data[x], fin.u); */
|
|
if (fin.u != xpect[x].u) ERR;
|
|
/* dfout.d = double_data[x]; */
|
|
dfin.d = double_in[x];
|
|
/* printf("double_data: %15g : 0x%16lx double_data_in: %15g : 0x%16lx\n", */
|
|
/* double_data[x], dfout.u, double_data[x], dfin.u); */
|
|
if (dfin.u != double_xpect[x].u) ERR;
|
|
}
|
|
|
|
/* Close the file again. */
|
|
if (nc_close(ncid)) ERR;
|
|
}
|
|
}
|
|
SUMMARIZE_ERR;
|
|
printf("**** testing more quantization values with default fill values...");
|
|
{
|
|
int ncid, dimid, varid1, varid2;
|
|
int quantize_mode_in, nsd_in;
|
|
float float_data[DIM_LEN_5] = {1.11111111, NC_FILL_FLOAT, 9.99999999, 12345.67, NC_FILL_FLOAT};
|
|
double double_data[DIM_LEN_5] = {1.1111111, NC_FILL_DOUBLE, 9.999999999, 1234567890.12345, NC_FILL_DOUBLE};
|
|
int x;
|
|
|
|
/* Create a netcdf-4 file with two vars. */
|
|
if (nc_create(FILE_NAME, NC_NETCDF4|NC_CLOBBER, &ncid)) ERR;
|
|
if (nc_def_dim(ncid, DIM_NAME_1, DIM_LEN_5, &dimid)) ERR;
|
|
if (nc_def_var(ncid, VAR_NAME_1, NC_FLOAT, NDIM1, &dimid, &varid1)) ERR;
|
|
if (nc_def_var(ncid, VAR_NAME_2, NC_DOUBLE, NDIM1, &dimid, &varid2)) ERR;
|
|
|
|
/* Turn on quantize for both vars. */
|
|
if (nc_def_var_quantize(ncid, varid1, NC_QUANTIZE_BITGROOM, NSD_3)) ERR;
|
|
if (nc_def_var_quantize(ncid, varid2, NC_QUANTIZE_BITGROOM, NSD_3)) ERR;
|
|
|
|
/* Write some data. */
|
|
if (nc_put_var_float(ncid, varid1, float_data)) ERR;
|
|
if (nc_put_var_double(ncid, varid2, double_data)) ERR;
|
|
|
|
/* Close the file. */
|
|
if (nc_close(ncid)) ERR;
|
|
|
|
{
|
|
float float_in[DIM_LEN_5];
|
|
double double_in[DIM_LEN_5];
|
|
union FU {
|
|
float f;
|
|
uint32_t u;
|
|
};
|
|
|
|
union FU fin;
|
|
/* union FU fout; */
|
|
union FU xpect[DIM_LEN_5];
|
|
union DU dfin;
|
|
/* union DU dfout; */
|
|
union DU double_xpect[DIM_LEN_5];
|
|
xpect[0].u = 0x3f8e3000;
|
|
xpect[1].u = 0x7cf00000;
|
|
xpect[2].u = 0x41200000;
|
|
xpect[3].u = 0x4640efff;
|
|
xpect[4].u = 0x7cf00000;
|
|
double_xpect[0].u = 0x3ff1c60000000000;
|
|
double_xpect[1].u = 0x479e000000000000;
|
|
double_xpect[2].u = 0x4023fe0000000000;
|
|
double_xpect[3].u = 0x41d265ffffffffff;
|
|
double_xpect[4].u = 0x479e000000000000;
|
|
|
|
/* Open the file and check metadata. */
|
|
if (nc_open(FILE_NAME, NC_WRITE, &ncid)) ERR;
|
|
if (nc_inq_var_quantize(ncid, 0, &quantize_mode_in, &nsd_in)) ERR;
|
|
if (quantize_mode_in != NC_QUANTIZE_BITGROOM || nsd_in != NSD_3) ERR;
|
|
if (nc_inq_var_quantize(ncid, 1, &quantize_mode_in, &nsd_in)) ERR;
|
|
if (quantize_mode_in != NC_QUANTIZE_BITGROOM || nsd_in != NSD_3) ERR;
|
|
|
|
/* Check the data. */
|
|
if (nc_get_var(ncid, varid1, float_in)) ERR;
|
|
if (nc_get_var(ncid, varid2, double_in)) ERR;
|
|
/* printf("\n"); */
|
|
for (x = 0; x < DIM_LEN_5; x++)
|
|
{
|
|
/* fout.f = float_data[x]; */
|
|
fin.f = float_in[x];
|
|
/* printf ("float_data: %10f : 0x%x float_data_in: %10f : 0x%x\n", */
|
|
/* float_data[x], fout.u, float_data[x], fin.u); */
|
|
if (fin.u != xpect[x].u) ERR;
|
|
/* dfout.d = double_data[x]; */
|
|
dfin.d = double_in[x];
|
|
/* printf("double_data: %15g : 0x%16lx double_data_in: %15g : 0x%16lx\n", */
|
|
/* double_data[x], dfout.u, double_data[x], dfin.u); */
|
|
if (dfin.u != double_xpect[x].u) ERR;
|
|
}
|
|
|
|
/* Close the file again. */
|
|
if (nc_close(ncid)) ERR;
|
|
}
|
|
}
|
|
SUMMARIZE_ERR;
|
|
printf("**** testing more quantization values with custom fill values...");
|
|
{
|
|
#define CUSTOM_FILL_FLOAT 99.99999
|
|
#define CUSTOM_FILL_DOUBLE -99999.99999
|
|
int ncid, dimid, varid1, varid2;
|
|
int quantize_mode_in, nsd_in;
|
|
float float_data[DIM_LEN_5] = {1.11111111, CUSTOM_FILL_FLOAT, 9.99999999, 12345.67, CUSTOM_FILL_FLOAT};
|
|
double double_data[DIM_LEN_5] = {1.1111111, CUSTOM_FILL_DOUBLE, 9.999999999, 1234567890.12345, CUSTOM_FILL_DOUBLE};
|
|
float custom_fill_float = CUSTOM_FILL_FLOAT;
|
|
double custom_fill_double = CUSTOM_FILL_DOUBLE;
|
|
int x;
|
|
|
|
/* Create a netcdf-4 file with two vars. */
|
|
if (nc_create(FILE_NAME, NC_NETCDF4|NC_CLOBBER, &ncid)) ERR;
|
|
if (nc_def_dim(ncid, DIM_NAME_1, DIM_LEN_5, &dimid)) ERR;
|
|
if (nc_def_var(ncid, VAR_NAME_1, NC_FLOAT, NDIM1, &dimid, &varid1)) ERR;
|
|
if (nc_put_att_float(ncid, varid1, _FillValue, NC_FLOAT, 1, &custom_fill_float)) ERR;
|
|
if (nc_def_var(ncid, VAR_NAME_2, NC_DOUBLE, NDIM1, &dimid, &varid2)) ERR;
|
|
if (nc_put_att_double(ncid, varid2, _FillValue, NC_DOUBLE, 1, &custom_fill_double)) ERR;
|
|
|
|
/* Turn on quantize for both vars. */
|
|
if (nc_def_var_quantize(ncid, varid1, NC_QUANTIZE_BITGROOM, NSD_3)) ERR;
|
|
if (nc_def_var_quantize(ncid, varid2, NC_QUANTIZE_BITGROOM, NSD_3)) ERR;
|
|
|
|
/* Write some data. */
|
|
if (nc_put_var_float(ncid, varid1, float_data)) ERR;
|
|
if (nc_put_var_double(ncid, varid2, double_data)) ERR;
|
|
|
|
/* Close the file. */
|
|
if (nc_close(ncid)) ERR;
|
|
|
|
{
|
|
float float_in[DIM_LEN_5];
|
|
double double_in[DIM_LEN_5];
|
|
union FU {
|
|
float f;
|
|
uint32_t u;
|
|
};
|
|
|
|
union FU fin;
|
|
/* union FU fout; */
|
|
union FU xpect[DIM_LEN_5];
|
|
union DU dfin;
|
|
/* union DU dfout; */
|
|
union DU double_xpect[DIM_LEN_5];
|
|
xpect[0].u = 0x3f8e3000;
|
|
xpect[1].u = 0x42c7ffff;
|
|
xpect[2].u = 0x41200000;
|
|
xpect[3].u = 0x4640efff;
|
|
xpect[4].u = 0x42c7ffff;
|
|
double_xpect[0].u = 0x3ff1c60000000000;
|
|
double_xpect[1].u = 0xc0f869fffff583a5;
|
|
double_xpect[2].u = 0x4023fe0000000000;
|
|
double_xpect[3].u = 0x41d265ffffffffff;
|
|
double_xpect[4].u = 0xc0f869fffff583a5;
|
|
|
|
/* Open the file and check metadata. */
|
|
if (nc_open(FILE_NAME, NC_WRITE, &ncid)) ERR;
|
|
if (nc_inq_var_quantize(ncid, 0, &quantize_mode_in, &nsd_in)) ERR;
|
|
if (quantize_mode_in != NC_QUANTIZE_BITGROOM || nsd_in != NSD_3) ERR;
|
|
if (nc_inq_var_quantize(ncid, 1, &quantize_mode_in, &nsd_in)) ERR;
|
|
if (quantize_mode_in != NC_QUANTIZE_BITGROOM || nsd_in != NSD_3) ERR;
|
|
|
|
/* Check the data. */
|
|
if (nc_get_var(ncid, varid1, float_in)) ERR;
|
|
if (nc_get_var(ncid, varid2, double_in)) ERR;
|
|
/* printf("\n"); */
|
|
for (x = 0; x < DIM_LEN_5; x++)
|
|
{
|
|
/* fout.f = float_data[x]; */
|
|
fin.f = float_in[x];
|
|
/* printf ("float_data: %10f : 0x%x float_data_in: %10f : 0x%x\n", */
|
|
/* float_data[x], fout.u, float_data[x], fin.u); */
|
|
if (fin.u != xpect[x].u) ERR;
|
|
/* dfout.d = double_data[x]; */
|
|
dfin.d = double_in[x];
|
|
/* printf("double_data: %15g : 0x%16lx double_data_in: %15g : 0x%16lx\n", */
|
|
/* double_data[x], dfout.u, double_data[x], dfin.u); */
|
|
if (dfin.u != double_xpect[x].u) ERR;
|
|
}
|
|
|
|
/* Close the file again. */
|
|
if (nc_close(ncid)) ERR;
|
|
}
|
|
}
|
|
SUMMARIZE_ERR;
|
|
printf("*** Checking BitGroom values with type conversion between ints and floats...");
|
|
{
|
|
int ncid;
|
|
int dimid;
|
|
int varid1, varid2;
|
|
unsigned char uc = 99;
|
|
signed char sc = -99;
|
|
unsigned short us = 9999;
|
|
signed short ss = -9999;
|
|
unsigned int ui = 9999999;
|
|
signed int si = -9999999;
|
|
unsigned long long int ull = 999999999;
|
|
signed long long int sll = -999999999;
|
|
size_t index;
|
|
|
|
/* Create file. */
|
|
if (nc_create(FILE_NAME, NC_NETCDF4, &ncid)) ERR;
|
|
|
|
/* Create dims. */
|
|
if (nc_def_dim(ncid, X_NAME, DIM_LEN_8, &dimid)) ERR;
|
|
|
|
/* Create the variables. */
|
|
if (nc_def_var(ncid, VAR_NAME, NC_FLOAT, NDIM1, &dimid, &varid1)) ERR;
|
|
if (nc_def_var(ncid, VAR_NAME_2, NC_DOUBLE, NDIM1, &dimid, &varid2)) ERR;
|
|
|
|
/* Set up quantization. */
|
|
if (nc_def_var_quantize(ncid, varid1, NC_QUANTIZE_BITGROOM, NSD_3)) ERR;
|
|
if (nc_def_var_quantize(ncid, varid2, NC_QUANTIZE_BITGROOM, NSD_3)) ERR;
|
|
|
|
/* Write data. */
|
|
index = 0;
|
|
if (nc_put_var1_uchar(ncid, varid1, &index, &uc)) ERR;
|
|
if (nc_put_var1_uchar(ncid, varid2, &index, &uc)) ERR;
|
|
index = 1;
|
|
if (nc_put_var1_schar(ncid, varid1, &index, &sc)) ERR;
|
|
if (nc_put_var1_schar(ncid, varid2, &index, &sc)) ERR;
|
|
index = 2;
|
|
if (nc_put_var1_ushort(ncid, varid1, &index, &us)) ERR;
|
|
if (nc_put_var1_ushort(ncid, varid2, &index, &us)) ERR;
|
|
index = 3;
|
|
if (nc_put_var1_short(ncid, varid1, &index, &ss)) ERR;
|
|
if (nc_put_var1_short(ncid, varid2, &index, &ss)) ERR;
|
|
index = 4;
|
|
if (nc_put_var1_uint(ncid, varid1, &index, &ui)) ERR;
|
|
if (nc_put_var1_uint(ncid, varid2, &index, &ui)) ERR;
|
|
index = 5;
|
|
if (nc_put_var1_int(ncid, varid1, &index, &si)) ERR;
|
|
if (nc_put_var1_int(ncid, varid2, &index, &si)) ERR;
|
|
index = 6;
|
|
if (nc_put_var1_ulonglong(ncid, varid1, &index, &ull)) ERR;
|
|
if (nc_put_var1_ulonglong(ncid, varid2, &index, &ull)) ERR;
|
|
index = 7;
|
|
if (nc_put_var1_longlong(ncid, varid1, &index, &sll)) ERR;
|
|
if (nc_put_var1_longlong(ncid, varid2, &index, &sll)) ERR;
|
|
|
|
/* Close the file. */
|
|
if (nc_close(ncid)) ERR;
|
|
|
|
{
|
|
float float_data_in[DIM_LEN_8];
|
|
double double_data_in[DIM_LEN_8];
|
|
int x;
|
|
|
|
/* Now reopen the file and check. */
|
|
if (nc_open(FILE_NAME, NC_NETCDF4, &ncid)) ERR;
|
|
|
|
/* Read the data. */
|
|
if (nc_get_var_float(ncid, varid1, float_data_in)) ERR;
|
|
if (nc_get_var_double(ncid, varid2, double_data_in)) ERR;
|
|
|
|
union FU xpect[DIM_LEN_8];
|
|
union DU double_xpect[DIM_LEN_8];
|
|
/* This test comes up with different answers to this than
|
|
* the corresponding bitgroom filter test, but that's
|
|
* OK. In netcdf-c quantization is applied as the data are
|
|
* written by the user, but in HDF5 filters, the bitgroom
|
|
* filter is applied to all data values as they are
|
|
* written to disk. See
|
|
* https://github.com/ccr/ccr/issues/194 for a full
|
|
* explanation. */
|
|
xpect[0].u = 0x42c60000;
|
|
xpect[1].u = 0xc2c60000;
|
|
xpect[2].u = 0x461c3000;
|
|
xpect[3].u = 0xc61c3000;
|
|
xpect[4].u = 0x4b189000;
|
|
xpect[5].u = 0xcb189000;
|
|
xpect[6].u = 0x4e6e6b28;
|
|
xpect[6].u = 0x4e6e6000;
|
|
xpect[7].u = 0xce6e6000;
|
|
double_xpect[0].u = 0x4058c00000000000;
|
|
double_xpect[1].u = 0xc058c00000000000;
|
|
double_xpect[2].u = 0x40c3860000000000;
|
|
double_xpect[3].u = 0xc0c3860000000000;
|
|
double_xpect[4].u = 0x4163120000000000;
|
|
double_xpect[5].u = 0xc163120000000000;
|
|
double_xpect[6].u = 0x41cdcc0000000000;
|
|
double_xpect[7].u = 0xc1cdcc0000000000;
|
|
|
|
for (x = 0; x < DIM_LEN_8; x++)
|
|
{
|
|
union FU fin;
|
|
union DU dfin;
|
|
fin.f = float_data_in[x];
|
|
dfin.d = double_data_in[x];
|
|
/* printf ("%d float_data_in : %08.8f : 0x%x expected %08.8f : 0x%x\n", */
|
|
/* x, float_data_in[x], fin.u, xpect[x].f, xpect[x].u); */
|
|
/* printf ("%d double_data_in : %15g : 0x%lx expected %15g : 0x%lx\n", */
|
|
/* x, double_data_in[x], dfin.u, double_xpect[x].d, double_xpect[x].u); */
|
|
if (fin.u != xpect[x].u)
|
|
ERR;
|
|
if (dfin.u != double_xpect[x].u)
|
|
ERR;
|
|
}
|
|
|
|
/* Close the file. */
|
|
if (nc_close(ncid)) ERR;
|
|
}
|
|
}
|
|
SUMMARIZE_ERR;
|
|
FINAL_RESULTS;
|
|
}
|