summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r3140] Purpose:Quincey Koziol2000-12-141-1/+67
| | | | | | | | | | | Added testing Description: Since I accidentally checked in some bug-fixes for the generic property code in my last checkin, I thought it would be a good idea to check in the tests for them also. If these cause problems, I'll back them out of the CVS tree... Platforms tested: FreeBSD 4.2 (hawkwind)
* [svn-r3139] Purpose:Quincey Koziol2000-12-143-13/+6
| | | | | | | | Bug Fix Description: Re-generated h5ls output which contained floating point numbers. Platforms tested: FreeBSD 4.2 (hawkwind)
* [svn-r3138] Purpose:Quincey Koziol2000-12-141-5/+12
| | | | | | | | | | | 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)
* [svn-r3137] MuQun Yang2000-12-141-1/+1
| | | | | | | | | | 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.
* [svn-r3136] Purpose:Quincey Koziol2000-12-141-3/+3
| | | | | | | | | 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)
* [svn-r3135] Purpose:Quincey Koziol2000-12-141-0/+3
| | | | | | | | Bug Fix Description: Dataspace wasn't being freed... Platforms tested: Cray J90 (killeen)
* [svn-r3134] Purpose:Quincey Koziol2000-12-141-1/+1
| | | | | | | | | | Bug Fix Description: Floating point format string is incorrect. Solution: Changed "g" -> "%g" Platforms tested: Cray J90 (killeen)
* [svn-r3133] Purpose:Quincey Koziol2000-12-142-6/+8
| | | | | | | | | Bug fix Description: Set the background buffer type to different values for compound vs. vlen & array datatypes. Platforms tested: Cray J90 (killeen)
* [svn-r3132] Purpose:Quincey Koziol2000-12-131-0/+96
| | | | | | | | More tests Description: Added regression test for non-optimized compound datatype conversion fix. Platforms tested: FreeBSD 4.2 (hawkwind)
* [svn-r3131] Purpose:Quincey Koziol2000-12-131-0/+4
| | | | | | | | | | | | 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)
* [svn-r3130] Elena Pourmal2000-12-132-2/+3
| | | | | | | | | | | | 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
* [svn-r3129] Purpose:Bill Wendling2000-12-131-1/+1
| | | | | | | | Removal of redundancy Description: HDF5.f90 was added in when it didn't need to be some times... Platforms tested: T3E
* [svn-r3128] Purpose:Bill Wendling2000-12-131-0/+2
| | | | | | | Updated Description: Added config files for unicosmk2.0.5.X for main library and Fortran library.
* [svn-r3127] Purpose:Bill Wendling2000-12-131-0/+138
| | | | | | | | | New File Description: T3E needs this file so that configure will find it. The name was changed. Platforms tested: T3E
* [svn-r3126] Purpose:Bill Wendling2000-12-131-6/+6
| | | | | | | | | | | | | | 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
* [svn-r3125] Purpose:Bill Wendling2000-12-131-0/+170
| | | | | | | | | | 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
* [svn-r3124] Purpose:Bill Wendling2000-12-131-1/+1
| | | | | | | | | | Bug Fix Description: FFLAGS wasn't being propagated correctly. Solution: Added the @FFLAGS@ macro to the correct FFLAGS line. Platforms tested: T3E
* [svn-r3123] Purpose:Bill Wendling2000-12-131-0/+1
| | | | | | Update Description: Added entry for ``./doc/html/PredefDTypes.html''
* [svn-r3122] Purpose:Binh-Minh Ribler2000-12-136-204/+106
| | | | | | | | | | | | | | | | 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)
* [svn-r3121] Purpose:Binh-Minh Ribler2000-12-135-738/+272
| | | | | | | | | | | | | | | | | 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)
* [svn-r3120] Purpose:Albert Cheng2000-12-121-1/+0
| | | | | | | | | | | | | 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. :-)
* [svn-r3119] Purpose:Albert Cheng2000-12-124-20/+31
| | | | | | | | | | | | | | | | | | | 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.
* [svn-r3118] Frank Baker2000-12-121-0/+3
| | | | | | | | | | 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
* [svn-r3117] Frank Baker2000-12-1215-30/+63
| | | | | | | | | Purpose: Linking the new "Predefined Dataypes" document into the RM. Description: Added PredefDTypes.html link into all RM files. Platforms tested: IE 5
* [svn-r3116] Frank Baker2000-12-121-0/+493
| | | | | | | Purpose: New "HDF5 Predefined Datatypes" document in RM. Platforms tested: IE 5
* [svn-r3115] Purpose:Bill Wendling2000-12-121-3/+6
| | | | | | | | | | | | 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 :)
* [svn-r3114] Purpose: FixBinh-Minh Ribler2000-12-1212-14/+39
| | | | | | | | | | | | | | | | | | | | 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.
* [svn-r3113] Purpose:Quincey Koziol2000-12-113-22/+19
| | | | | | | | | | | | 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)
* [svn-r3112] Purpose:Quincey Koziol2000-12-111-18/+5
| | | | | | | | | | | | 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)
* [svn-r3111] Purpose:Quincey Koziol2000-12-111-0/+293
| | | | | | | | | 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)
* [svn-r3110] Purpose:Quincey Koziol2000-12-112-23/+29
| | | | | | | | | | | 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)
* [svn-r3109] Purpose:Bill Wendling2000-12-111-54/+68
| | | | | | | | | Reformatting Description: Also changed how some of the lists were specified to be recursive in the BNF style. Platforms tested: Netscrape
* [svn-r3108] Purpose:Bill Wendling2000-12-111-27/+84
| | | | | | Reformatted Platforms tested: Netscape
* [svn-r3107] Purpose:Bill Wendling2000-12-112-29/+90
| | | | | | | Adding Flag Description: Testing to see if the C++ compiler can handle the ``static_cast'' keyword.
* [svn-r3106] Snapshot version 1.3 release 35HDF Admin2000-12-092-2/+2
|
* [svn-r3105] Frank Baker2000-12-0839-44/+137
| | | | | | | | | 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
* [svn-r3104] Frank Baker2000-12-081-91/+213
| | | | | | | | | | | | | | | | | 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
* [svn-r3103] Frank Baker2000-12-081-0/+4
| | | | | | | Purpose: Moved H5Pset_driver and H5Pget_driver_info from RM to TechNotes. Platforms tested: IE 5
* [svn-r3102] Frank Baker2000-12-081-1/+1
| | | | | | | Purpose: Minor copy edit. Platforms tested: IE 5
* [svn-r3101] Purpose:Bill Wendling2000-12-082-80/+83
| | | | | | | | Updates and reformatting Description: Reformatting of RELEASE document. Updated some of the platforms in the INSTALL doc.
* [svn-r3100] Purpose:Bill Wendling2000-12-082-4/+4
| | | | | | | | | | | 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
* [svn-r3099] Purpose:Bill Wendling2000-12-081-167/+192
| | | | Reformatting
* [svn-r3098] Purpose:Bill Wendling2000-12-081-0/+2
| | | | | | | | Updated Description: Added the new C++ test files. Platforms tested: Linux
* [svn-r3097] Purpose:Bill Wendling2000-12-084-3/+144
| | | | | | | | | 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
* [svn-r3096] Purpose:Bill Wendling2000-12-071-1/+1
| | | | | | | oops Description: I somehow checked in some test Makefile.in that I was working on. Sorry.
* [svn-r3095] Purpose:Bill Wendling2000-12-071-2/+2
| | | | | | Fix again Description: Needed to change the .C to .cpp in this depend module.
* [svn-r3094] Purpose:Bill Wendling2000-12-072-3/+3
| | | | | | | | 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
* [svn-r3093] Raymond Lu2000-12-071-0/+2
| | | | | | | Purpose: update Description: Added HDF-GASS and HDF-SRB information in this file.
* [svn-r3092] Purpose:Bill Wendling2000-12-071-32/+32
| | | | | | Update Description: Changed to reflect the new C++ file names.
* [svn-r3091] Purpose:Bill Wendling2000-12-072-2/+2
| | | | | | | | | | 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.