Commit Graph

2579 Commits

Author SHA1 Message Date
Quincey Koziol
10c6d6d500 [svn-r3138] Purpose:
Bug Fix
Description:
    More descrimination is necessary for the type of background buffer needed.
    Compound types need H5T_BKG_TEMP and vlen & array types need H5T_BKG_YES.
Solution:
    Make the internal routine be more specific about the background type set.
Platforms tested:
    FreeBSD 4.2 (hawkwind)
2000-12-14 11:10:32 -05:00
MuQun Yang
375f018aa1 [svn-r3137]
Purpose:
   kind of bug fix for windows
Description:
   Use HDfree() instead of free() so that it will not cause exceptions on windows dll
Solution:
Platforms tested:
    windows NT 4.0 and 5.0, confirmed at Linux box.
2000-12-14 10:55:51 -05:00
Quincey Koziol
d07377a897 [svn-r3136] Purpose:
Bug Fix
Description:
    Moved check for float type ahead of double type, since they are the same
    size on Crays..
Platforms tested:
    Cray J90 (killeen)
2000-12-13 19:54:07 -05:00
Quincey Koziol
cd7098f1b6 [svn-r3135] Purpose:
Bug Fix
Description:
    Dataspace wasn't being freed...
Platforms tested:
    Cray J90 (killeen)
2000-12-13 19:51:48 -05:00
Quincey Koziol
496207675d [svn-r3134] Purpose:
Bug Fix
Description:
    Floating point format string is incorrect.
Solution:
    Changed "g" -> "%g"
Platforms tested:
    Cray J90 (killeen)
2000-12-13 19:36:09 -05:00
Quincey Koziol
8653f01910 [svn-r3133] Purpose:
Bug fix
Description:
    Set the background buffer type to different values for compound vs. vlen
    & array datatypes.
Platforms tested:
    Cray J90 (killeen)
2000-12-13 19:35:07 -05:00
Quincey Koziol
e974009fd6 [svn-r3132] Purpose:
More tests
Description:
    Added regression test for non-optimized compound datatype conversion fix.
Platforms tested:
    FreeBSD 4.2 (hawkwind)
2000-12-13 18:33:57 -05:00
Quincey Koziol
1f4c821432 [svn-r3131] Purpose:
Bug fix
Description:
    Non-optimized conversions have a memory overwrite bug when the destination
    size of a compound datatype is greater than the source size.
Solution:
    Corrected direction of walking through the destination array for final
    copying.
Platforms tested:
    FreeBSD 4.2 (hawkwind) & Cray J90 (killeen)
2000-12-13 18:33:05 -05:00
Elena Pourmal
c701e8b89f [svn-r3130]
Purpose:
    Maintenance
Description:
    Not all platforms support F90 MPI. I used USE MPI statement, and
    it did not work on T3E (mcurie.nersc.gov)
Solution:
    Use INCLUDE 'MPIF.H' statement instead of USE MPI.
Platforms tested:
    O2K and T3E
2000-12-13 14:21:52 -05:00
Bill Wendling
c85098bd45 [svn-r3129] Purpose:
Removal of redundancy
Description:
	HDF5.f90 was added in when it didn't need to be some times...
Platforms tested:
	T3E
2000-12-13 13:09:27 -05:00
Bill Wendling
f88e6f1b78 [svn-r3128] Purpose:
Updated
Description:
	Added config files for unicosmk2.0.5.X for main library and
	Fortran library.
2000-12-13 11:54:33 -05:00
Bill Wendling
0df4d83cf7 [svn-r3127] Purpose:
New File
Description:
	T3E needs this file so that configure will find it. The name was
	changed.
Platforms tested:
	T3E
2000-12-13 11:47:56 -05:00
Bill Wendling
4b882ef486 [svn-r3126] Purpose:
Bug Fix
Description:
	Parallel stuff wasn't being compiled on T3E. It was complaining
	about not being able to find said files. Also, I was confused
	about which Fortran module needed to be compiled when it was
	parallel.
Solution:
	Did magic so that the correct files are specified when parallel
	is enabled.
Platforms tested:
	T3E
2000-12-13 11:47:02 -05:00
Bill Wendling
7e2e2add53 [svn-r3125] Purpose:
New Config
Description:
	T3E at mcurie.nersc.gov changed it's name yet again.
Solution:
	Create new file so that configure will find it correctly.
Platforms tested:
	T3E
2000-12-13 11:45:31 -05:00
Bill Wendling
9ef7df5d0c [svn-r3124] Purpose:
Bug Fix
Description:
	FFLAGS wasn't being propagated correctly.
Solution:
	Added the @FFLAGS@ macro to the correct FFLAGS line.
Platforms tested:
	T3E
2000-12-13 11:44:20 -05:00
Bill Wendling
321f037a6f [svn-r3123] Purpose:
Update
Description:
	Added entry for ``./doc/html/PredefDTypes.html''
2000-12-13 11:26:32 -05:00
Binh-Minh Ribler
1aec17231d [svn-r3122] Purpose:
Fix and improve

Description:
        - Put functions that are common to H5File and Group into a
          prototype class, CommonFG.  I didn't do that before because
          of the fear of the consequences of multiple inheritance, since
          H5File and Group already inherit from different super classes.
          I recently read a C++ book and learned to use MI more safely.
          This change reduced some more of code redundancy.
        - Added missing const to some function parameters

Platforms tested:
        Solaris/CC 5.0 (arabica)
2000-12-13 08:06:57 -05:00
Binh-Minh Ribler
9cbeb3c53f [svn-r3121] Purpose:
Fix and improve

Description:
	- Put functions that are common to H5File and Group into a
	  prototype class, CommonFG.  I didn't do that before because
	  of the fear of the consequences of multiple inheritance, since
	  H5File and Group already inherit from different super classes.
	  I recently read a C++ book and learned to use MI more safely.
	  This change reduced some more of code redundancy.
	- Added missing const to some function parameters
	- Added missing return statements for some functions.

Platforms tested:
	Solaris/CC 5.0 (arabica)
2000-12-12 21:15:31 -05:00
Albert Cheng
b72e8ae6b9 [svn-r3120] Purpose:
Bug fix
Description:
    In H5FD_mpio_open, there was a mem-xfree of the file variable
    before it ever gets alloc'ed.  This is inside a failure condition
    that rarely happened.  But if it happens, it would be freeing
    a null pointer.
Solution:
    Removed the error code.
Platforms tested:
    Modi4 -64 parallel. (Everything still works. :-)
2000-12-12 18:20:09 -05:00
Albert Cheng
061ed07676 [svn-r3119] Purpose:
New features
Description:
    Some testers found the filename lengths too short.
    Changed it to use the FILENAME_MAX usually defined in stdio.h.
    If not, set it to 512 which should be sufficient for users
    but should not exceed any system limits.

    Also added a new test parameters of ndatasets so that the tester
    can specific a different number of datasets for the multiple
    datasets tests.

    Changed the datatype of datasets created to DOUBLE.  This eliminates
    the current racing conditions.  But the racing bugs during conversion
    still need to be tracked down and squashed.
Platforms tested:
    Modi4 -64.
2000-12-12 18:12:57 -05:00
Frank Baker
f401dda2d7 [svn-r3118]
Purpose:
    Cross-referencing "HDF5 Predefined Datatypes" in the UG.
Description:
    Added PredefDTypes.html and RM links to Section 6, "Predefined
    Atomic Datatypes" in Datatypes.html.
Platforms tested:
    IE 5
2000-12-12 17:52:34 -05:00
Frank Baker
7fa2bc6700 [svn-r3117]
Purpose:
    Linking the new "Predefined Dataypes" document into the RM.
Description:
    Added PredefDTypes.html link into all RM files.
Platforms tested:
    IE 5
2000-12-12 17:43:02 -05:00
Frank Baker
c5f7ae952f [svn-r3116]
Purpose:
    New "HDF5 Predefined Datatypes" document in RM.
Platforms tested:
    IE 5
2000-12-12 17:29:41 -05:00
Bill Wendling
8343f2a687 [svn-r3115] Purpose:
Doh!
Description:
	When adding the examples directory to the testing, forgot to
	remove it from the other scripts in the makefile since it would
	then be run twice.
Solution:
	Removed it (saved the old code)
Platforms tested:
	Hey! Trust me :)
2000-12-12 14:24:04 -05:00
Binh-Minh Ribler
84fadb9f74 [svn-r3114] Purpose: Fix
Description:
	Dec CC compiler doesn't support some new c++ features.
	Some typos caused compilation erros on Dec Alpha.

Solution:
        - Added macro BOOL_NOTDEFINED to define bool type on Dec
          Alpha (gondolin) since its compiler doesn't support bool.
	- Added macro NO_STATIC_CAST to prevent the use of the new
	  c++ feature static_cast since Dec CC compiler doesn't support.
	- Added const to parameters of some functions to match the
	  functions' declaration and definition.  Typos errors and
	  Dec CC complained.

Platform:
	Solaris (arabica).  Also tried to build on Dec Alpha but still
	not linked due to some missing compiler flags; its compilation
	went fine though.
2000-12-11 23:40:09 -05:00
Quincey Koziol
3dcc29ec41 [svn-r3113] Purpose:
Bug Fix
Description:
    Stumbled across a problem when working on the J90 h5dump problem where
    I noticed that some of the output for named compound datatypes wasn't being
    displayed.
Solution:
    Generated correct DDL files.
Platforms tested:
    FreeBSD 4.2 (hawkwind) & Cray J90 (killeen)
2000-12-11 16:26:55 -05:00
Quincey Koziol
5c5b65eeec [svn-r3112] Purpose:
Bug Fix
Description:
    Stumbled across a problem when working on the J90 h5dump problem where
    I noticed that some of the output for named compound datatypes wasn't being
    displayed.
Solution:
    Corrected output to display missing information.
Platforms tested:
    FreeBSD 4.2 (hawkwind) & Cray J90 (killeen)
2000-12-11 16:26:26 -05:00
Quincey Koziol
6cfbe1f0c7 [svn-r3111] Purpose:
Additional test
Description:
    Exercise reading background buffer from file when reading only one field
    from a compound datatype which has array fields.
Platforms tested:
    FreeBSD 4.2 (hawkwind)
2000-12-11 15:07:04 -05:00
Quincey Koziol
be2d93daff [svn-r3110] Purpose:
Bug Fix
Description:
    Compound datatypes weren't reading background data properly when used
    with array or vlen fields.
Solution:
    Changed to always read background information from file in those situations.
Platforms tested:
    FreeBSD 4.2 (hawkwind)
2000-12-11 15:06:02 -05:00
Bill Wendling
a44b5b4725 [svn-r3109] Purpose:
Reformatting
Description:
	Also changed how some of the lists were specified to be recursive
	in the BNF style.
Platforms tested:
	Netscrape
2000-12-11 13:49:53 -05:00
Bill Wendling
898110c9cf [svn-r3108] Purpose:
Reformatted
Platforms tested:
	Netscape
2000-12-11 10:03:14 -05:00
Bill Wendling
054fa7d35e [svn-r3107] Purpose:
Adding Flag
Description:
	Testing to see if the C++ compiler can handle the ``static_cast''
	keyword.
2000-12-11 09:30:33 -05:00
HDF Admin
95fe1ec48e [svn-r3106] Snapshot version 1.3 release 35 2000-12-09 01:25:18 -05:00
Frank Baker
243c60e8b5 [svn-r3105]
Purpose:
	Thoughout doc set (UG, RM, Intro, FormatSpec, and index/TOC pages):
	    Added/updated "Describes HDF5 Release ..." entry.
	    In many cases, verified/updated "Last modified ..." entry.
Platforms tested:
	IE 5
2000-12-08 17:12:36 -05:00
Frank Baker
15df4a2679 [svn-r3104]
Purpose:
	Finalize new API function descriptions
Description:
	Edits to recently-added APIs:
		H5Pset_sieve_buf_size     H5Pset_fapl_log
		H5P[sg]et_fapl_mpio       H5Pset_fapl_multi
		H5P[sg]et_dxpl_multi      H5Pset_fapl_split
		H5P[sg]et_fapl_gass       H5Pset_fapl_dpss
                H5P[sg]et_fapl_srb
	Added H5P[sg]et_fapl_core.
	Addition of new APIs for R1.4 is now complete.
	Moved H5Pset_driver and H5Pget_driver_info to TechNotes.
Platforms tested:
	IE 5
2000-12-08 14:50:33 -05:00
Frank Baker
7bb514d358 [svn-r3103]
Purpose:
    Moved H5Pset_driver and H5Pget_driver_info from RM to TechNotes.
Platforms tested:
    IE 5
2000-12-08 14:46:51 -05:00
Frank Baker
b026b7b063 [svn-r3102]
Purpose:
    Minor copy edit.
Platforms tested:
    IE 5
2000-12-08 14:44:23 -05:00
Bill Wendling
28ee815050 [svn-r3101] Purpose:
Updates and reformatting
Description:
	Reformatting of RELEASE document.

	Updated some of the platforms in the INSTALL doc.
2000-12-08 13:33:20 -05:00
Bill Wendling
dc08de60a6 [svn-r3100] Purpose:
Fix
Description:
	When not building in the same directory, we needed to tell the
	checker wherre to look for files.
Solution:
	Put $(srcdir) before things which needed it.
Platforms tested:
	Linux
2000-12-08 13:28:02 -05:00
Bill Wendling
2c96b3ac31 [svn-r3099] Purpose:
Reformatting
2000-12-08 13:08:23 -05:00
Bill Wendling
c3be87ad62 [svn-r3098] Purpose:
Updated
Description:
	Added the new C++ test files.
Platforms tested:
	Linux
2000-12-08 11:50:22 -05:00
Bill Wendling
4aab9c01df [svn-r3097] Purpose:
Add
Description:
	Adding a small amount of testing to the C++ library until "real"
	testing can be created. (We use the examples).
Platforms tested:
	Linux
2000-12-08 11:15:00 -05:00
Bill Wendling
7548217cb4 [svn-r3096] Purpose:
oops
Description:
	I somehow checked in some test Makefile.in that I was working on.
	Sorry.
2000-12-07 17:32:10 -05:00
Bill Wendling
0d855a875e [svn-r3095] Purpose:
Fix again
Description:
	Needed to change the .C to .cpp in this depend module.
2000-12-07 16:43:02 -05:00
Bill Wendling
82c9848b2d [svn-r3094] Purpose:
Fix
Description:
	Hopefully the last fix in the .C -> .cpp suffix change saga.
	Forgot to tell the commence/conclude files that the suffix has
	changed
2000-12-07 16:41:53 -05:00
Raymond Lu
812bfdae01 [svn-r3093]
Purpose:
    update
Description:
    Added HDF-GASS and HDF-SRB information in this file.
2000-12-07 15:55:32 -05:00
Bill Wendling
297b31c448 [svn-r3092] Purpose:
Update
Description:
	Changed to reflect the new C++ file names.
2000-12-07 15:29:18 -05:00
Bill Wendling
b7daa5d7fd [svn-r3091] Purpose:
Fix
Description:
	Needed to change the extention to the file configure expects to
	be in the source directory when Binh-Minh changed the extensions
	for all the files.
Solution:
	Did just that.
2000-12-07 14:29:29 -05:00
Bill Wendling
f271832d0d [svn-r3090] Purpose:
Fix
Description:
	Windows couldn't handle the .C extension. The filenames had to be
	changed to *.cpp instead.
Solution:
	Changed in the Makefiles to accomodate said change.
Platforms tested:
	Eyeballed.
2000-12-06 22:43:42 -05:00
Binh-Minh Ribler
4e615c2188 [svn-r3089] Renamed create.C to create.cpp 2000-12-06 20:13:17 -05:00