2006-03-25 03:36:44 +08:00
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-07 22:56:24 +08:00
|
|
|
|
* Copyright by The HDF Group. *
|
2006-03-25 03:36:44 +08:00
|
|
|
|
* Copyright by the Board of Trustees of the University of Illinois. *
|
|
|
|
|
* All rights reserved. *
|
|
|
|
|
* *
|
|
|
|
|
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
|
|
|
|
* terms governing use, modification, and redistribution, is contained in *
|
|
|
|
|
* the files COPYING and Copyright.html. COPYING can be found at the root *
|
|
|
|
|
* of the source code distribution tree; Copyright.html can be found at the *
|
|
|
|
|
* root level of an installed copy of the electronic HDF5 document set and *
|
|
|
|
|
* is linked from the top-level documents page. It can also be found at *
|
2007-02-07 22:56:24 +08:00
|
|
|
|
* http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have *
|
|
|
|
|
* access to either file, you may request a copy from help@hdfgroup.org. *
|
2006-03-25 03:36:44 +08:00
|
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Programmer: Raymond Lu <slu@ncsa.uiuc.edu>
|
|
|
|
|
* Thursday, March 23, 2006
|
|
|
|
|
*
|
2011-01-22 04:36:14 +08:00
|
|
|
|
* Purpose: Check if floating-point data created on OpenVMS, big-endian, and
|
|
|
|
|
* little-endian machines can be read on the machine running this test.
|
2006-03-25 03:36:44 +08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "h5test.h"
|
2010-03-18 20:23:04 +08:00
|
|
|
|
#include "H5srcdir.h"
|
2006-03-25 03:36:44 +08:00
|
|
|
|
|
|
|
|
|
const char *FILENAME[] = {
|
|
|
|
|
"vms_data",
|
|
|
|
|
"le_data",
|
|
|
|
|
"be_data",
|
|
|
|
|
NULL
|
|
|
|
|
};
|
|
|
|
|
|
2011-01-22 04:36:14 +08:00
|
|
|
|
#define DATASETNAME "Array"
|
2011-01-27 00:47:53 +08:00
|
|
|
|
#define DATASETNAME2 "Scale_offset_double_data"
|
2011-01-22 04:36:14 +08:00
|
|
|
|
#define DATASETNAME3 "Scale_offset_int_data"
|
2011-01-22 03:04:14 +08:00
|
|
|
|
#define NX 6
|
|
|
|
|
#define NY 6
|
2006-03-25 03:36:44 +08:00
|
|
|
|
|
2011-01-22 04:36:14 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: read_data
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Read data from a data file.
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: 0
|
|
|
|
|
* Failure: -1
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Raymond Lu
|
|
|
|
|
* 21 January 2011
|
|
|
|
|
*
|
|
|
|
|
* Modifications:
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
2006-03-25 03:36:44 +08:00
|
|
|
|
static int read_data(char *fname)
|
|
|
|
|
{
|
2010-03-18 05:38:20 +08:00
|
|
|
|
const char *pathname = H5_get_srcdir_filename(fname); /* Corrected test file name */
|
2006-03-25 03:36:44 +08:00
|
|
|
|
hid_t file, dataset; /* handles */
|
|
|
|
|
hid_t datatype;
|
|
|
|
|
hid_t dt;
|
2011-01-25 03:17:14 +08:00
|
|
|
|
float data_in[NX][NY]; /* input buffer */
|
|
|
|
|
float data_out[NX][NY]; /* output buffer */
|
2011-01-27 05:36:59 +08:00
|
|
|
|
double double_data_in[NX][NY]; /* input buffer */
|
|
|
|
|
double double_data_out[NX][NY]; /* output buffer */
|
2011-01-22 04:36:14 +08:00
|
|
|
|
int int_data_in[NX][NY]; /* input buffer */
|
|
|
|
|
int int_data_out[NX][NY]; /* output buffer */
|
2006-07-16 03:49:04 +08:00
|
|
|
|
int i, j;
|
2006-03-25 03:36:44 +08:00
|
|
|
|
unsigned nerrors = 0;
|
2011-01-22 03:04:14 +08:00
|
|
|
|
const char *not_supported= " Scaleoffset filter is not enabled.";
|
2011-01-22 04:36:14 +08:00
|
|
|
|
const char *not_fixed= " Scaleoffset filter bug (2131) is not fixed yet.";
|
2011-01-22 03:04:14 +08:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Open the file.
|
|
|
|
|
*/
|
|
|
|
|
if((file = H5Fopen(pathname, H5F_ACC_RDONLY, H5P_DEFAULT)) < 0)
|
|
|
|
|
TEST_ERROR;
|
|
|
|
|
|
|
|
|
|
TESTING(" regular dataset");
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Open the regular dataset.
|
|
|
|
|
*/
|
|
|
|
|
if((dataset = H5Dopen2(file, DATASETNAME, H5P_DEFAULT)) < 0)
|
|
|
|
|
TEST_ERROR;
|
2006-03-25 03:36:44 +08:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Data and output buffer initialization.
|
|
|
|
|
*/
|
|
|
|
|
for (j = 0; j < NX; j++) {
|
|
|
|
|
for (i = 0; i < NY; i++) {
|
|
|
|
|
data_in[j][i] = i + j;
|
|
|
|
|
data_out[j][i] = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/*
|
|
|
|
|
* 0 1 2 3 4 5
|
|
|
|
|
* 1 2 3 4 5 6
|
|
|
|
|
* 2 3 4 5 6 7
|
|
|
|
|
* 3 4 5 6 7 8
|
|
|
|
|
* 4 5 6 7 8 9
|
2011-01-22 03:04:14 +08:00
|
|
|
|
* 5 6 7 8 9 10
|
2006-03-25 03:36:44 +08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
2011-01-22 03:04:14 +08:00
|
|
|
|
* Get datatype and dataspace handles and then query
|
|
|
|
|
* dataset class, order, size, rank and dimensions.
|
2006-03-25 03:36:44 +08:00
|
|
|
|
*/
|
2011-01-22 03:04:14 +08:00
|
|
|
|
if((dt = H5Dget_type(dataset)) < 0) /* datatype handle */
|
2006-03-25 03:36:44 +08:00
|
|
|
|
TEST_ERROR;
|
2011-01-22 03:04:14 +08:00
|
|
|
|
if((datatype = H5Tget_native_type(dt, H5T_DIR_DEFAULT)) < 0)
|
|
|
|
|
TEST_ERROR;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Read data from hyperslab in the file into the hyperslab in
|
|
|
|
|
* memory and display.
|
|
|
|
|
*/
|
|
|
|
|
if(H5Dread(dataset, datatype, H5S_ALL, H5S_ALL, H5P_DEFAULT, data_out) < 0)
|
|
|
|
|
TEST_ERROR;
|
|
|
|
|
|
|
|
|
|
/* Check results */
|
|
|
|
|
for (j=0; j<NX; j++) {
|
|
|
|
|
for (i=0; i<NY; i++) {
|
|
|
|
|
/* if (data_out[j][i] != data_in[j][i]) { */
|
|
|
|
|
if (!DBL_ABS_EQUAL(data_out[j][i], data_in[j][i])) {
|
|
|
|
|
if (!nerrors++) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf("element [%d][%d] is %g but should have been %g\n",
|
|
|
|
|
j, i, data_out[j][i], data_in[j][i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Close/release resources.
|
|
|
|
|
*/
|
|
|
|
|
H5Tclose(dt);
|
|
|
|
|
H5Tclose(datatype);
|
|
|
|
|
H5Dclose(dataset);
|
|
|
|
|
|
|
|
|
|
/* Failure */
|
|
|
|
|
if (nerrors) {
|
|
|
|
|
printf("total of %d errors out of %d elements\n", nerrors, NX*NY);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
|
2011-01-27 00:47:53 +08:00
|
|
|
|
TESTING(" dataset of DOUBLE with scale-offset filter");
|
2011-01-22 04:36:14 +08:00
|
|
|
|
#ifdef TMP
|
2011-01-22 03:04:14 +08:00
|
|
|
|
#ifdef H5_HAVE_FILTER_SCALEOFFSET
|
|
|
|
|
/*
|
|
|
|
|
* Open the dataset with scale-offset filter.
|
|
|
|
|
*/
|
|
|
|
|
if((dataset = H5Dopen2(file, DATASETNAME2, H5P_DEFAULT)) < 0)
|
2006-03-25 03:36:44 +08:00
|
|
|
|
TEST_ERROR;
|
|
|
|
|
|
2011-01-22 03:04:14 +08:00
|
|
|
|
/*
|
|
|
|
|
* Data and output buffer initialization.
|
|
|
|
|
*/
|
|
|
|
|
for (j = 0; j < NX; j++) {
|
|
|
|
|
for (i = 0; i < NY; i++) {
|
2011-01-27 05:36:59 +08:00
|
|
|
|
double_data_in[j][i] = ((double)(i + j + 1))/3;
|
|
|
|
|
double_data_out[j][i] = 0;
|
2011-01-22 03:04:14 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-03-25 03:36:44 +08:00
|
|
|
|
/*
|
|
|
|
|
* Get datatype and dataspace handles and then query
|
|
|
|
|
* dataset class, order, size, rank and dimensions.
|
|
|
|
|
*/
|
[svn-r14193] Description:
Make H5Dopen versioned and change all internal usage to use H5Dopen2
Add simple regression test for H5Dopen1
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
2007-10-09 03:59:36 +08:00
|
|
|
|
if((dt = H5Dget_type(dataset)) < 0) /* datatype handle */
|
2006-03-25 03:36:44 +08:00
|
|
|
|
TEST_ERROR;
|
[svn-r14193] Description:
Make H5Dopen versioned and change all internal usage to use H5Dopen2
Add simple regression test for H5Dopen1
Tested on:
FreeBSD/32 6.2 (duty) in debug mode
FreeBSD/64 6.2 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe,
in debug mode
Linux/64-amd64 2.6 (smirom) w/default API=1.6.x, w/C++ & FORTRAN,
in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Mac OS X/32 10.4.10 (amazon) in debug mode
2007-10-09 03:59:36 +08:00
|
|
|
|
if((datatype = H5Tget_native_type(dt, H5T_DIR_DEFAULT)) < 0)
|
2006-03-25 03:36:44 +08:00
|
|
|
|
TEST_ERROR;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Read data from hyperslab in the file into the hyperslab in
|
|
|
|
|
* memory and display.
|
|
|
|
|
*/
|
2011-01-27 05:36:59 +08:00
|
|
|
|
if(H5Dread(dataset, datatype, H5S_ALL, H5S_ALL, H5P_DEFAULT, double_data_out) < 0)
|
2006-03-25 03:36:44 +08:00
|
|
|
|
TEST_ERROR;
|
|
|
|
|
|
|
|
|
|
/* Check results */
|
|
|
|
|
for (j=0; j<NX; j++) {
|
|
|
|
|
for (i=0; i<NY; i++) {
|
2011-01-27 05:36:59 +08:00
|
|
|
|
if (!DBL_REL_EQUAL(double_data_out[j][i], double_data_in[j][i], 0.001)) {
|
2006-03-25 03:36:44 +08:00
|
|
|
|
if (!nerrors++) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf("element [%d][%d] is %g but should have been %g\n",
|
2011-01-27 05:36:59 +08:00
|
|
|
|
j, i, double_data_out[j][i], double_data_in[j][i]);
|
2006-03-25 03:36:44 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Close/release resources.
|
|
|
|
|
*/
|
|
|
|
|
H5Tclose(dt);
|
|
|
|
|
H5Tclose(datatype);
|
|
|
|
|
H5Dclose(dataset);
|
2006-06-27 22:45:06 +08:00
|
|
|
|
|
2006-03-25 03:36:44 +08:00
|
|
|
|
/* Failure */
|
|
|
|
|
if (nerrors) {
|
|
|
|
|
printf("total of %d errors out of %d elements\n", nerrors, NX*NY);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PASSED();
|
2011-01-22 04:36:14 +08:00
|
|
|
|
#else /*H5_HAVE_FILTER_SCALEOFFSET*/
|
|
|
|
|
SKIPPED();
|
|
|
|
|
puts(not_supported);
|
|
|
|
|
#endif /*H5_HAVE_FILTER_SCALEOFFSET*/
|
|
|
|
|
#else /*TMP*/
|
|
|
|
|
SKIPPED();
|
|
|
|
|
puts(not_fixed);
|
|
|
|
|
#endif /*TMP*/
|
|
|
|
|
|
|
|
|
|
TESTING(" dataset of INT with scale-offset filter");
|
|
|
|
|
|
|
|
|
|
#ifdef H5_HAVE_FILTER_SCALEOFFSET
|
|
|
|
|
/*
|
|
|
|
|
* Open the dataset with scale-offset filter.
|
|
|
|
|
*/
|
|
|
|
|
if((dataset = H5Dopen2(file, DATASETNAME3, H5P_DEFAULT)) < 0)
|
|
|
|
|
TEST_ERROR;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Data and output buffer initialization.
|
|
|
|
|
*/
|
|
|
|
|
for (j = 0; j < NX; j++) {
|
|
|
|
|
for (i = 0; i < NY; i++) {
|
|
|
|
|
int_data_in[j][i] = i + j;
|
|
|
|
|
int_data_out[j][i] = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Get datatype and dataspace handles and then query
|
|
|
|
|
* dataset class, order, size, rank and dimensions.
|
|
|
|
|
*/
|
|
|
|
|
if((dt = H5Dget_type(dataset)) < 0) /* datatype handle */
|
|
|
|
|
TEST_ERROR;
|
|
|
|
|
if((datatype = H5Tget_native_type(dt, H5T_DIR_DEFAULT)) < 0)
|
|
|
|
|
TEST_ERROR;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Read data from hyperslab in the file into the hyperslab in
|
|
|
|
|
* memory and display.
|
|
|
|
|
*/
|
|
|
|
|
if(H5Dread(dataset, datatype, H5S_ALL, H5S_ALL, H5P_DEFAULT, int_data_out) < 0)
|
|
|
|
|
TEST_ERROR;
|
|
|
|
|
|
|
|
|
|
/* Check results */
|
|
|
|
|
for (j=0; j<NX; j++) {
|
|
|
|
|
for (i=0; i<NY; i++) {
|
|
|
|
|
if (int_data_out[j][i] != int_data_in[j][i]) {
|
|
|
|
|
if (!nerrors++) {
|
|
|
|
|
H5_FAILED();
|
|
|
|
|
printf("element [%d][%d] is %d but should have been %d\n",
|
|
|
|
|
j, i, int_data_out[j][i], int_data_in[j][i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Close/release resources.
|
|
|
|
|
*/
|
|
|
|
|
H5Tclose(dt);
|
|
|
|
|
H5Tclose(datatype);
|
|
|
|
|
H5Dclose(dataset);
|
|
|
|
|
|
|
|
|
|
/* Failure */
|
|
|
|
|
if (nerrors) {
|
|
|
|
|
printf("total of %d errors out of %d elements\n", nerrors, NX*NY);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PASSED();
|
|
|
|
|
|
2011-01-22 03:04:14 +08:00
|
|
|
|
#else /*H5_HAVE_FILTER_SCALEOFFSET*/
|
|
|
|
|
SKIPPED();
|
|
|
|
|
puts(not_supported);
|
|
|
|
|
#endif /*H5_HAVE_FILTER_SCALEOFFSET*/
|
|
|
|
|
|
|
|
|
|
H5Fclose(file);
|
2006-03-25 03:36:44 +08:00
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
error:
|
|
|
|
|
H5E_BEGIN_TRY {
|
|
|
|
|
H5Fclose(file);
|
|
|
|
|
} H5E_END_TRY;
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-22 03:04:14 +08:00
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
|
* Function: main
|
|
|
|
|
*
|
|
|
|
|
* Purpose: Tests the basic features of Virtual File Drivers
|
|
|
|
|
*
|
|
|
|
|
* Return: Success: exit(0)
|
|
|
|
|
* Failure: exit(1)
|
|
|
|
|
*
|
|
|
|
|
* Programmer: Raymond Lu
|
|
|
|
|
* Tuesday, Sept 24, 2002
|
|
|
|
|
*
|
|
|
|
|
*-------------------------------------------------------------------------
|
|
|
|
|
*/
|
2006-03-25 03:36:44 +08:00
|
|
|
|
int main(void)
|
|
|
|
|
{
|
|
|
|
|
char filename[1024];
|
|
|
|
|
unsigned nerrors = 0;
|
|
|
|
|
|
|
|
|
|
h5_reset();
|
|
|
|
|
|
2011-01-22 03:04:14 +08:00
|
|
|
|
puts("Testing reading data created on OpenVMS");
|
2006-03-25 03:36:44 +08:00
|
|
|
|
h5_fixname(FILENAME[0], H5P_DEFAULT, filename, sizeof filename);
|
|
|
|
|
nerrors += read_data(filename);
|
|
|
|
|
|
2011-01-22 03:04:14 +08:00
|
|
|
|
puts("Testing reading data created on Linux");
|
2006-03-25 03:36:44 +08:00
|
|
|
|
h5_fixname(FILENAME[1], H5P_DEFAULT, filename, sizeof filename);
|
|
|
|
|
nerrors += read_data(filename);
|
|
|
|
|
|
2011-01-22 03:04:14 +08:00
|
|
|
|
puts("Testing reading data created on Solaris");
|
2006-03-25 03:36:44 +08:00
|
|
|
|
h5_fixname(FILENAME[2], H5P_DEFAULT, filename, sizeof filename);
|
|
|
|
|
nerrors += read_data(filename);
|
|
|
|
|
|
|
|
|
|
if (nerrors) {
|
2006-07-16 03:49:04 +08:00
|
|
|
|
printf("***** %u FAILURE%s! *****\n",
|
2006-03-25 03:36:44 +08:00
|
|
|
|
nerrors, 1==nerrors?"":"S");
|
|
|
|
|
HDexit(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
printf("All data type tests passed.\n");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|