From e4dc71bbee2d38d01adb4a39bdf52a4c79e2d746 Mon Sep 17 00:00:00 2001 From: Pedro Vicente Nunes Date: Fri, 24 Jan 2003 13:01:44 -0500 Subject: [svn-r6328] Purpose: fix bug in Makefile.in Platforms tested: windows , linux --- tools/h5diff/Makefile.in | 3 +- tools/h5diff/h5diff.c | 860 +++++++++++++++++++++++------------------------ 2 files changed, 431 insertions(+), 432 deletions(-) diff --git a/tools/h5diff/Makefile.in b/tools/h5diff/Makefile.in index 0f71c62..be03047 100644 --- a/tools/h5diff/Makefile.in +++ b/tools/h5diff/Makefile.in @@ -26,7 +26,7 @@ TEST_SCRIPTS= LIBHDF5=$(top_builddir)/src/libhdf5.la PUB_PROGS=h5diff -PROGS= +PROGS=$(PUB_PROGS) $(TEST_PROGS) ## Source and object files for the library; do not install ## @@ -58,5 +58,4 @@ $(PROGS): $(LIBTOOLS) $(LIBHDF5) h5diff: h5diff.lo h5trav.lo @$(LT_LINK_EXE) $(CFLAGS) -o $@ h5diff.lo h5trav.lo $(LIBTOOLS) $(LIBHDF5) $(LDFLAGS) $(LIBS) - @CONCLUDE@ diff --git a/tools/h5diff/h5diff.c b/tools/h5diff/h5diff.c index 4980eeb..3478cc6 100644 --- a/tools/h5diff/h5diff.c +++ b/tools/h5diff/h5diff.c @@ -42,18 +42,18 @@ dset5 dset6 -p 0.05 h5diff_test1.h5 h5diff_test2.h5 typedef struct options_t { - int d_; - int g_; - int t_; - int r_; /* report only what objects differ */ + int d_; + int g_; + int t_; + int r_; /* report only what objects differ */ int m_; - double m_limit; - int p_; - double p_percent; - int n_; - int n_number_count; - int a_; - int v_; /* verbose */ + double m_limit; + int p_; + double p_percent; + int n_; + int n_number_count; + int a_; + int v_; /* verbose */ } options_t; int do_test_files(); @@ -61,7 +61,7 @@ int do_test_files(); int diff_dataset( hid_t file1_id, hid_t file2_id, const char *obj1_name, const char *obj2_name, options_t options ); int array_diff( void *buf1, void *buf2, hsize_t tot_cnt, hid_t type_id, int rank, - hsize_t *dims, options_t options ); + hsize_t *dims, options_t options ); void print_pos( hsize_t curr_pos, hsize_t *acc, hsize_t *pos, int rank ); @@ -88,7 +88,7 @@ void print_pos( hsize_t curr_pos, hsize_t *acc, hsize_t *pos, int rank ); void usage( const char *progname ) { #define USAGE "\ - [-m ] Print a basic help message\n\ + [-h ] Print a basic help message\n\ [-v ] Print a verbose output message\n\ [-r ] Print only what objects differ \n\ [-d ] Compare only datasets\n\ @@ -100,7 +100,7 @@ void usage( const char *progname ) file2 File name of the second HDF5 file\n" fprintf(stderr, - "%s [-d delta] file1 file2\n%s", + "%s [-h] [-v] [-r] [-d] [-g] [-n count] [-m delta] [-p percent] file1 file2\n%s", progname, USAGE); exit(EXIT_FAILURE); @@ -141,16 +141,16 @@ int main(int argc, const char *argv[]) herr_t status; int nobjects1, nobjects2; info_t *info1=NULL; - info_t *info2=NULL; - char *attr1_name = NULL; + info_t *info2=NULL; + char *attr1_name = NULL; char *attr2_name = NULL; - options_t options = {0,0,0,0,0,0,0,0,0,0,0,0}; + options_t options = {0,0,0,0,0,0,0,0,0,0,0,0}; - /* string compare */ - char *pdest; + /* string compare */ + char *pdest; int result; - int len; + int len; @@ -170,7 +170,7 @@ int main(int argc, const char *argv[]) /* last 2 items are the file names */ for (argno=1; argno=0; i--) - { - acc[i]=acc[i+1]*dims[i+1]; - } + acc[rank-1]=1; + for(i=(rank-2); i>=0; i--) + { + acc[i]=acc[i+1]*dims[i+1]; + } /* Get the class. */ type_class = H5Tget_class( type_id ); @@ -745,137 +745,137 @@ int array_diff( void *buf1, void *buf2, hsize_t tot_cnt, hid_t type_id, int rank switch(type_size) { - /*------------------------------------------------------------------------- + /*------------------------------------------------------------------------- * H5T_INTEGER 1 *------------------------------------------------------------------------- */ - case 1: - i1ptr1 = (char *) buf1; - i1ptr2 = (char *) buf2; - - break; + case 1: + i1ptr1 = (char *) buf1; + i1ptr2 = (char *) buf2; + + break; - /*------------------------------------------------------------------------- + /*------------------------------------------------------------------------- * H5T_INTEGER 2 *------------------------------------------------------------------------- */ - case 2: - i2ptr1 = (short *) buf1; - i2ptr2 = (short *) buf2; - - break; + case 2: + i2ptr1 = (short *) buf1; + i2ptr2 = (short *) buf2; + + break; - /*------------------------------------------------------------------------- + /*------------------------------------------------------------------------- * H5T_INTEGER 4 *------------------------------------------------------------------------- */ - case 4: - i4ptr1 = (int *) buf1; - i4ptr2 = (int *) buf2; - for ( i = 0; i < tot_cnt; i++) - { - - if (*i4ptr1 != *i4ptr2) - { - print_pos( i, acc, pos, rank ); - printf(" %d, %d\n", *i4ptr1, *i4ptr2); - found++; - - if ( options.n_ && found>options.n_number_count-1) - return found; - } - i4ptr1++; i4ptr2++; - } - break; - - + case 4: + i4ptr1 = (int *) buf1; + i4ptr2 = (int *) buf2; + for ( i = 0; i < tot_cnt; i++) + { + + if (*i4ptr1 != *i4ptr2) + { + print_pos( i, acc, pos, rank ); + printf(" %d, %d\n", *i4ptr1, *i4ptr2); + found++; + + if ( options.n_ && found>options.n_number_count-1) + return found; + } + i4ptr1++; i4ptr2++; + } + break; + + } /*switch*/ break; /* H5T_INTEGER */ - case H5T_FLOAT: + case H5T_FLOAT: switch(type_size) { - /*------------------------------------------------------------------------- + /*------------------------------------------------------------------------- * H5T_FLOAT 4 *------------------------------------------------------------------------- */ - case 4: - fptr1 = (float *) buf1; - fptr2 = (float *) buf2; - - for ( i = 0; i < tot_cnt; i++) - { - if ( options.n_ && i>options.n_number_count-1) - return found; - - /* delta but not percentage */ - if ( options.m_ && !options.p_ ) - { - if ( fabs(*fptr1 - *fptr2) > options.m_limit ) - { - print_pos( i, acc, pos, rank ); - printf(" %f, %f\n", *fptr1, *fptr2); - found=1; - } - } - - /* percentage but not delta */ - else if ( !options.m_ && options.p_ ) - { - if ( 1 - *fptr1 / *fptr2 > options.p_percent ) - { - print_pos( i, acc, pos, rank ); - printf(" %f, %f\n", *fptr1, *fptr2); - found=1; - } - } - - /* percentage and delta */ - else if ( options.m_ && options.p_ ) - { - if ( 1 - *fptr1 / *fptr2 > options.p_percent && - fabs(*fptr1 - *fptr2) > options.m_limit ) - { - print_pos( i, acc, pos, rank ); - printf(" %f, %f\n", *fptr1, *fptr2); - found=1; - } - } - - else - - if (*fptr1 != *fptr2) - { - print_pos( i, acc, pos, rank ); - printf(" %f, %f\n", *fptr1, *fptr2); - found=1; - } - fptr1++; fptr2++; - } - break; - - /*------------------------------------------------------------------------- + case 4: + fptr1 = (float *) buf1; + fptr2 = (float *) buf2; + + for ( i = 0; i < tot_cnt; i++) + { + if ( options.n_ && i>options.n_number_count-1) + return found; + + /* delta but not percentage */ + if ( options.m_ && !options.p_ ) + { + if ( fabs(*fptr1 - *fptr2) > options.m_limit ) + { + print_pos( i, acc, pos, rank ); + printf(" %f, %f\n", *fptr1, *fptr2); + found=1; + } + } + + /* percentage but not delta */ + else if ( !options.m_ && options.p_ ) + { + if ( 1 - *fptr1 / *fptr2 > options.p_percent ) + { + print_pos( i, acc, pos, rank ); + printf(" %f, %f\n", *fptr1, *fptr2); + found=1; + } + } + + /* percentage and delta */ + else if ( options.m_ && options.p_ ) + { + if ( 1 - *fptr1 / *fptr2 > options.p_percent && + fabs(*fptr1 - *fptr2) > options.m_limit ) + { + print_pos( i, acc, pos, rank ); + printf(" %f, %f\n", *fptr1, *fptr2); + found=1; + } + } + + else + + if (*fptr1 != *fptr2) + { + print_pos( i, acc, pos, rank ); + printf(" %f, %f\n", *fptr1, *fptr2); + found=1; + } + fptr1++; fptr2++; + } + break; + + /*------------------------------------------------------------------------- * H5T_FLOAT 8 *------------------------------------------------------------------------- */ - case 8: - dptr1 = (double *) buf1; - dptr2 = (double *) buf2; - + case 8: + dptr1 = (double *) buf1; + dptr2 = (double *) buf2; + - break; - + break; + } /*switch*/ @@ -913,22 +913,22 @@ void print_pos( hsize_t curr_pos, hsize_t *acc, hsize_t *pos, int rank ) { int i; - for ( i = 0; i < rank; i++) - pos[i]=0; + for ( i = 0; i < rank; i++) + pos[i]=0; - for ( i = 0; i < rank; i++) - { - pos[i] = curr_pos/acc[i]; - curr_pos -= acc[i]*pos[i]; - } - assert( curr_pos == 0 ); + for ( i = 0; i < rank; i++) + { + pos[i] = curr_pos/acc[i]; + curr_pos -= acc[i]*pos[i]; + } + assert( curr_pos == 0 ); - printf("[ " ); - for ( i = 0; i < rank; i++) - { - printf("%d ", pos[i]+1 ); - } - printf("] :" ); + printf("[ " ); + for ( i = 0; i < rank; i++) + { + printf("%d ", pos[i]+1 ); + } + printf("] :" ); } @@ -945,20 +945,20 @@ int do_test_files() hid_t file1_id, file2_id; hid_t dataset_id; hid_t space_id; - hid_t group_id, group2_id; + hid_t group_id, group2_id; hsize_t dims [1] = { 7 }; - hsize_t dims2 [2] = { 3,2 }; + hsize_t dims2 [2] = { 3,2 }; int data1[7] = {1,1,1,1,1,1,1}; int data2[7] = {1,1,1,4,5,6,7}; - float data3[7] = {1,1,3,4,5,6,7}; - float data4[7] = {1,1,3.02f,4.002f,5.00002f,6,7}; - float data5[3][2] = {1,1,3,4,5,6}; - float data6[3][2] = {1,1.1f,3.02f,4.002f,5.00002f,6}; - - /* attribute */ - size_t size_attr = 5; - float attr_data1[5] = {1,2,3,4,5}; - float attr_data2[5] = {1,2.1f,3.01f,4.001f,5.00001f}; + float data3[7] = {1,1,3,4,5,6,7}; + float data4[7] = {1,1,3.02f,4.002f,5.00002f,6,7}; + float data5[3][2] = {1,1,3,4,5,6}; + float data6[3][2] = {1,1.1f,3.02f,4.002f,5.00002f,6}; + + /* attribute */ + size_t size_attr = 5; + float attr_data1[5] = {1,2,3,4,5}; + float attr_data2[5] = {1,2.1f,3.01f,4.001f,5.00001f}; herr_t status; /*------------------------------------------------------------------------- @@ -1013,7 +1013,7 @@ int do_test_files() *------------------------------------------------------------------------- */ - /* Create a group. */ + /* Create a group. */ group_id = H5Gcreate(file1_id, "g1", 0); /* Close */ @@ -1039,7 +1039,7 @@ int do_test_files() status = H5Sclose(space_id); - /*------------------------------------------------------------------------- + /*------------------------------------------------------------------------- * Make dataset "dset2" on file2 *------------------------------------------------------------------------- */ @@ -1063,35 +1063,35 @@ int do_test_files() *------------------------------------------------------------------------- */ - /* Create a data space */ + /* Create a data space */ space_id = H5Screate_simple(1,dims,NULL); - /* Create a group. */ + /* Create a group. */ group_id = H5Gcreate(file2_id, "g1", 0); - /* Create a dataset "g1/dset1" */ + /* Create a dataset "g1/dset1" */ dataset_id = H5Dcreate(group_id,"dset1",H5T_NATIVE_INT,space_id,H5P_DEFAULT); /* Write the data */ status = H5Dwrite(dataset_id,H5T_NATIVE_INT,H5S_ALL,H5S_ALL,H5P_DEFAULT,data2); /* Close */ - status = H5Dclose(dataset_id); + status = H5Dclose(dataset_id); status = H5Gclose(group_id); - status = H5Sclose(space_id); + status = H5Sclose(space_id); /*------------------------------------------------------------------------- * Make group "g2/g1" on file2 *------------------------------------------------------------------------- */ - /* Create a group. */ + /* Create a group. */ group_id = H5Gcreate(file2_id, "g2", 0); - group2_id = H5Gcreate(group_id, "g1", 0); + group2_id = H5Gcreate(group_id, "g1", 0); /* Close */ status = H5Gclose(group_id); - status = H5Gclose(group2_id); + status = H5Gclose(group2_id); /*------------------------------------------------------------------------- * Make dataset "dset4" on file2 @@ -1146,7 +1146,7 @@ int do_test_files() /* Close */ status = H5Dclose(dataset_id); status = H5Sclose(space_id); - + /*------------------------------------------------------------------------- * Close files *------------------------------------------------------------------------- -- cgit v0.12