Commit Graph

395 Commits

Author SHA1 Message Date
Quincey Koziol
71ca572047 [svn-r6264] Purpose:
Update manifest with missing test files...
2003-01-10 08:27:27 -05:00
Quincey Koziol
9a433b99a5 [svn-r6252] Purpose:
Lots of performance improvements & a couple new internal API interfaces.

Description:
    Performance Improvements:
        - Cached file offset & length sizes in shared file struct, to avoid
            constantly looking them up in the FCPL.
        - Generic property improvements:
            - Added "revision" number to generic property classes to speed
                up comparisons.
            - Changed method of storing properties from using a hash-table
                to the TBBT routines in the library.
            - Share the propery names between classes and the lists derived
                from them.
            - Removed redundant 'def_value' buffer from each property.
            - Switching code to use a "copy on write" strategy for
                properties in each list, where the properties in each list
                are shared with the properties in the class, until a
                property's value is changed in a list.
        - Fixed error in layout code which was allocating too many buffers.
        - Redefined public macros of the form (H5open()/H5check, <variable>)
            internally to only be (<variable>), avoiding innumerable useless
            calls to H5open() and H5check_version().
        - Reuse already zeroed buffers in H5F_contig_fill instead of
            constantly re-zeroing them.
        - Don't write fill values if writing entire dataset.
        - Use gettimeofday() system call instead of time() system when
            checking the modification time of a dataset.
        - Added reference counted string API and use it for tracking the
            names of objects opening in a file (for the ID->name code).
        - Removed redundant H5P_get() calls in B-tree routines.
        - Redefine H5T datatype macros internally to the library, to avoid
            calling H5check redundantly.
        - Keep dataspace information for dataset locally instead of reading
            from disk each time.  Added new module to track open objects
            in a file, to allow this (which will be useful eventually for
            some FPH5 metadata caching issues).
        - Remove H5AC_find macro which was inlining metadata cache lookups,
            and call function instead.
        - Remove redundant memset() calls from H5G_namei() routine.
        - Remove redundant checking of object type when locating objects
            in metadata cache and rely on the address only.
        - Create default dataset object to use when default dataset creation
            property list is used to create datasets, bypassing querying
            for all the property list values.
        - Use default I/O vector size when performing raw data with the
            default dataset transfer property list, instead of querying for
            I/O vector size.
        - Remove H5P_DEFAULT internally to the library, replacing it with
            more specific default property list based on the type of
            property list needed.
        - Remove redundant memset() calls in object header message (H5O*)
            routines.
        - Remove redunant memset() calls in data I/O routines.
        - Split free-list allocation routines into malloc() and calloc()-
            like routines, instead of one combined routine.
        - Remove lots of indirection in H5O*() routines.
        - Simplify metadata cache entry comparison routine (used when
            flushing entire cache out).
        - Only enable metadata cache statistics when H5AC_DEBUG is turned
            on, instead of always tracking them.
        - Simplify address comparison macro (H5F_addr_eq).
        - Remove redundant metadata cache entry protections during dataset
            creation by protecting the object header once and making all
            the modifications necessary for the dataset creation before
            unprotecting it.
        - Reduce # of "number of element in extent" computations performed
            by computing and storing the value during dataspace creation.
        - Simplify checking for group location's file information, when file
            has not been involving in file-mounting operations.
        - Use binary encoding for modification time, instead of ASCII.
        - Hoist H5HL_peek calls (to get information in a local heap)
            out of loops in many group routine.
        - Use static variable for iterators of selections, instead of
            dynamically allocation them each time.
        - Lookup & insert new entries in one step, avoiding traversing
            group's B-tree twice.
        - Fixed memory leak in H5Gget_objname_idx() routine (tangential to
            performance improvements, but fixed along the way).
        - Use free-list for reference counted strings.
        - Don't bother copying object names into cached group entries,
            since they are re-created when an object is opened.

        The benchmark I used to measure these results created several thousand
        small (2K) datasets in a file and wrote out the data for them.  This is
        Elena's "regular.c" benchmark.

        These changes resulted in approximately ~4.3x speedup of the
        development branch when compared to the previous code in the
        development branch and ~1.4x speedup compared to the release
        branch.

        Additionally, these changes reduce the total memory used (code and
        data) by the development branch by ~800KB, bringing the development
        branch back into the same ballpark as the release branch.

        I'll send out a more detailed description of the benchmark results
        as a followup note.

    New internal API routines:
        Added "reference counted strings" API for tracking strings that get
            used by multiple owners without duplicating the strings.
        Added "ternary search tree" API for text->object mappings.

Platforms tested:
    Tested h5committest {arabica (fortran), eirene (fortran, C++)
	modi4 (parallel, fortran)}
    Other platforms/configurations tested?
        FreeBSD 4.7 (sleipnir) serial & parallel
        Solaris 2.6 (baldric) serial
2003-01-09 12:20:03 -05:00
Albert Cheng
22c46e25b1 [svn-r6233] Purpose:
Updated with the newly added file, H5MPprivate.h.
2003-01-03 14:38:29 -05:00
Albert Cheng
9174121b6b [svn-r6215] Added Files:
fortran/config/powerpc-ibm-aix5.x
       To cover AIX 5.x.
Removed Files:
    fortran/config/powerpc-ibm-aix4.2.1.0
    fortran/config/powerpc-ibm-aix4.3.2.0
    These files are outdated and have been replaced by powerpc-ibm-aix4.x.
Modified Files:
    MANIFEST
    Update it.
Platforms tested:
    Only on LLNL blue.  LLNL SP are the only machines that use
    these files and that I have access.
2002-12-18 18:03:05 -05:00
Quincey Koziol
f3175abb1b [svn-r6128] Purpose:
Added entry for H5Tget_native_type test review document.
2002-11-20 13:20:42 -05:00
Quincey Koziol
b47a688089 [svn-r6119] Purpose:
Add "test review" pages.
2002-11-20 08:57:13 -05:00
Quincey Koziol
b1ff513e6a [svn-r6110] Purpose:
Code cleanup/new feature

Description:
    Removed poorly named H5_HAVE_COMPRESSION flag in favor of
    H5_HAVE_FILTER_DEFLATE.

    Added new test files for "missing filter" testing.

Platforms tested:
    Tested h5committest {arabica (fortran), eirene (fortran, C++)
	modi4 (parallel, fortran)}
    FreeBSD 4.7 (sleipnir)
2002-11-20 08:02:20 -05:00
Raymond Lu
0105a3b97c [svn-r6099]
Purpose:
    bug fix.
Description:
    h5dump cannot dump data and datatype for VL string.
Platforms tested:
    eirene, arabica
Misc. update:
    MANIFEST, RELEASE.txt
2002-11-18 11:38:11 -05:00
MuQun Yang
9646b2464c [svn-r6086]
Purpose:
     updated file list including shuffling code and shuffling note
Description:
Solution:
Platforms tested:
Misc. update:
2002-11-13 11:29:57 -05:00
Raymond Lu
a9dea215ed [svn-r6060]
Purpose:
    Add new functions
Description:
    add H5Tget_native_type and H5Tis_variable_str.
Platforms tested:
    arabica, eirene, modi4
Misc. update:
    MANIFEST and release_docs/RELEASE updated.
2002-11-06 16:08:45 -05:00
Quincey Koziol
4e0b0046df [svn-r6053] Purpose:
Add file

Description:
    Add parallel hyperslab benchmark.
2002-11-05 06:04:53 -05:00
Albert Cheng
4bd557ec1e [svn-r6036] Description:
Updated with the new entry of Daily_tests_explained.
Platforms tested:
    bin/chkmanifest
2002-10-28 12:56:00 -05:00
Bill Wendling
c6cb0df0fd [svn-r6027] Purpose:
Update
Description:
    Added new files to the MANIFEST and added a new configure switch for
    enabling building of the Flexible parallel HDF5 module.
Platforms tested:
    Modi4 Eirene Arabica
2002-10-23 14:33:35 -05:00
Albert Cheng
c5137a1d94 [svn-r6018] Description:
updated with the removal of h5dumptst.c and the addition of h5dumpgentest.c
Platforms tested:
    Only tested in eirene via bin/chkmanifest
2002-10-20 18:58:11 -05:00
Albert Cheng
233d060ddb [svn-r6011] Purpose:
Updated with added file.
2002-10-16 00:43:26 -05:00
Quincey Koziol
f333d40db1 [svn-r5980] Purpose:
Add the tools/h5diff/Dependencies file.
2002-10-14 09:58:04 -05:00
Pedro Vicente Nunes
b5bd1a150f [svn-r5977] Purpose:
removed the Dependencies in h5diff from the MANIFEST file (the Dependencies file was not generated in the h5diff dir )
2002-10-11 09:50:24 -05:00
Pedro Vicente Nunes
8059e1be49 [svn-r5974] Purpose:
insert then h5diff files
2002-10-10 10:35:25 -05:00
Raymond Lu
a4bb3150b8 [svn-r5953]
Purpose:
    Update for new test program.
Description:
    Added file_handle.c in /test
2002-09-30 11:35:50 -05:00
Elena Pourmal
f5096c2000 [svn-r5940]
Purpose:
    Bug fix, code improvement
Description:
    Fortran tests didn't cleanup created files. Also HDF5_PREFIX and
    HDF5_PARAPREFIX were not used to specify location of the files.
    There was a redundant file in the testpar directory that contained
    an error reporting function used by both serial and parallel tests.
Solution:
    Created library h5test_fortran.a that contains functions used by the
    serial and parallel tests. It includes Fortran and C functions that
    may be called from Fortran programs to report errors, to modify
    file names and to cleanup files after run. Modified test code to
    use new functions.
Platforms tested:
    Linux 2.2 (eirene) serial
    IRIX64 (modi4) parallel with HDF5_PREFIX and HDF5_PARAPREFIX set to $SCR
    Solris 2.7 with mpich 1.2.4 with HDF5_PARAPREFIX set to /tmp/epourmal
2002-09-23 17:06:01 -05:00
Raymond Lu
29da4951f8 [svn-r5879]
Purpose:
    Design for compact dataset
Description:
    Compact dataset is stored in the header message for dataset layout.
Platforms tested:
    arabica, eirene.
2002-08-20 11:18:02 -05:00
Quincey Koziol
c85063bfad [svn-r5872] Purpose:
Code cleanup

Description:
    Move get/set routines for each type of property list (file creation,
    dataset creation, file access and dataset transfer) into their own source
    code module.

Platforms tested:
    FreeBSD 4.6 (sleipnir)
2002-08-12 13:13:27 -05:00
Quincey Koziol
22f1be9a31 [svn-r5804] Purpose:
Update with new MPI-posix driver files and testpar testing script.
2002-07-15 10:30:03 -05:00
Albert Cheng
cb38286e58 [svn-r5728] Updated with added file. 2002-06-29 18:41:03 -05:00
Albert Cheng
ae10cd5e83 [svn-r5633] Updated. 2002-06-14 10:12:59 -05:00
Albert Cheng
124c299db4 [svn-r5625] Updated. 2002-06-13 06:57:10 -05:00
Albert Cheng
596e3da561 [svn-r5610] Updated with the added h5redeploy tool. 2002-06-12 15:13:11 -05:00
Bill Wendling
c8721abdbc [svn-r5554] Purpose:
Compress I/O Test Add
Description:
    This is the initial check-in of the compress I/O test. It will write
    out compressed buffers to a file.

    I need to implement a write of uncompressed data first for
    comparison...
Platforms tested:
    Linux
2002-06-07 16:06:10 -05:00
Bill Wendling
88f9ee489a [svn-r5512] Purpose:
Update
Description:
    Added the "perform/gen_report.pl" file.
2002-06-03 14:57:43 -05:00
MuQun Yang
891ba681ee [svn-r5301]
Purpose:
   remove all_withhdf4.zip from the file list
Description:
Solution:
Platforms tested:
2002-05-01 08:30:18 -05:00
Bill Wendling
24edaaf9f0 [svn-r5235] Purpose:
Update
Description:
    Updated the way we used the AC_INIT macros so that it's current to
    the new standard way and not deprecated anymore.

    Also, added a test for some functions during parallel Fortran
    configure. This required the creation of an H5config_fortran.h file
    so that we can test for these...
Platforms tested:
    Elena is going to test the changes to the fortran after she checks in
    her other code. I will test on SDSC machines after getting her code.

    The other changes were tested on Linux.
2002-04-23 15:02:26 -05:00
Pedro Vicente Nunes
ee56e5272c [svn-r5189]
Purpose:
 added new file ./test/getname.c
2002-04-17 09:38:21 -05:00
Quincey Koziol
170eecec83 [svn-r5174] Purpose:
Update manifest with new files.
2002-04-12 07:55:21 -05:00
Bill Wendling
c1edc96aaa [svn-r5156] Purpose:
Update
Description:
	Updated to reflect change of set_extend.c to set_extent.c.
2002-04-10 08:33:41 -05:00
Bill Wendling
89cee5529a [svn-r5133] Purpose:
Update
Description:
	Updated MANIFEST to reflect the removal of some autotools files which
	the autotool upgrade made obsolete.
Platforms tested:
	Linux
2002-04-02 17:14:13 -05:00
Bill Wendling
68556658db [svn-r5132] Purpose:
Autotools Update
Description:
	I've updated autoconf, automake, and libtool to the latest/greatest
	versions; 2.53, 1.6, and 1.4.2 resp.

	Many changes come with the new versions:

		- ltconfig is no longer used
		- acconfig.h is no longer used (#define values are declared with
		  the macro)
		- regeneration of all of the aclocal.m4, configure, and
		  H5config.h.in files.
		- new config.{guess,sub} files
		- new ltmain.sh file
Platforms tested:
	AIX (blue), and Linux
2002-04-02 17:08:23 -05:00
Bill Wendling
65d52eaf8e [svn-r5120] Purpose:
HDF4 Removal
Description:
	There were some testfiles still left after we removed HDF4 from the
	HDF5 tree...
Platforms tested:
	Linux
2002-03-29 17:55:09 -05:00
Bill Wendling
480c319ab4 [svn-r5087] Purpose:
Update
Description:
	Reflect the removal of the HDF4 stuff from the HDF5 library
2002-03-27 11:10:06 -05:00
Binh-Minh Ribler
867e0c5316 [svn-r5041]
Purpose:
    Updated MANIFEST for removing all_lang.zip
2002-03-07 00:06:07 -05:00
Albert Cheng
aa5d82f9b0 [svn-r5037] Updated with added file.
Platforms tested:
    bin/chkmanifest
2002-03-06 09:49:10 -05:00
Bill Wendling
2a576e3f85 [svn-r5028] Purpose:
Update
Description:
	Added the addition of the tlarge_objname.* files...
Platforms tested:
	Linux
2002-02-28 12:25:40 -05:00
Binh-Minh Ribler
7d1f2c7d1c [svn-r5013]
Purpose:
    For adding INSTALL_Windows_withcpp.txt
2002-02-26 10:10:04 -05:00
Bill Wendling
6a22514a56 [svn-r5008] Purpose:
Test Add
Description:
	Added a test for dumping files with the multi driver.
Platforms tested:
	Linux
2002-02-25 18:06:26 -05:00
Bill Wendling
e3458407ef [svn-r5007] Purpose:
Update
Description:
	Updated with the newest testfiles.
Platforms tested:
	Linux
2002-02-25 17:40:32 -05:00
Bill Wendling
f81bca3fc6 [svn-r4942] Purpose:
Feature Add
Description:
	Added set_extend to the MANIFEST and test/ directory Makefile.
2002-02-12 11:20:56 -05:00
Albert Cheng
61f6b93eb7 [svn-r4881] Updated for the removal of examples/runexample.sh 2002-01-29 11:14:45 -05:00
Quincey Koziol
618c63fda1 [svn-r4855] Purpose:
Update manifest with new test file.
2002-01-25 09:54:58 -05:00
Binh-Minh Ribler
c524358b6c [svn-r4844]
Purpose:
    Updated MANIFEST
Description:
    Added file c++/config/irix6.x for modi4
2002-01-21 08:03:52 -05:00
Bill Wendling
3c6be60da7 [svn-r4782]
Purpose:
	Feature Add
Description:
	Added support for dumping Group Comments. This involved a
	modification of the DDL as well.
Solution:
	Steal code from h5ls and put it in the h5dump. The ddl.html file was
	updated as normal. And a test was created...
Platforms tested:
	Dangermouse, Modi4, Kelgia
2002-01-05 11:33:50 -05:00
Albert Cheng
e22c095636 [svn-r4757] Purpose:
Removing the DPSS (gridstorage) driver source code.
Description:
    The DPSS (using Grid-Storage) driver is retired.
    Removed the configure option with-gridstorage from configure.in.
    Cvs remove the following files
    ./src/H5FDdpss.c
    ./src/H5FDdpss.h
    ./test/dpss_read.c
    ./test/dpss_write.c

    Regenerated Dependencies files (some had to be hand-edited since
    'make depend' did not cover them.)
    Removed reference to DPSS Virtual file driver from H5F.c.
Platforms tested:
    modi4 (Parallel; -with-gass=...), eirene, arabica (fortran, cxx).
2001-12-30 00:23:38 -05:00
Quincey Koziol
fe5803b9ee [svn-r4725] Purpose:
Add missing h4toh5 file.
2001-12-16 09:54:31 -05:00
Elena Pourmal
76e9fe7298 [svn-r4658]
Purpose:
    Maintenance
Description:
    Added configuration file for SP3 to support C++
Platforms tested:
    NERSC SP3
2001-11-28 15:55:43 -05:00
Elena Pourmal
2e910e48b9 [svn-r4636]
Purpose:
    Bug fix and maintenance
Description:
    I added new file tH5E.f90 to the fortran/test directory
Platforms tested:
    arabica and eirene
2001-11-27 10:07:15 -05:00
Quincey Koziol
a496459acc [svn-r4630] Purpose:
Add missing file.
2001-11-21 10:05:12 -05:00
Quincey Koziol
5c373b3136 [svn-r4615] Purpose:
Code cleanup
Description:
    Add new header file
2001-11-20 13:47:42 -05:00
Binh-Minh Ribler
e9019388d8 [svn-r4613]
Purpose:
    Updating MANIFEST
Description:
    Added ./windows/all_lang.zip, which is all.zip plus the C++ API
    library and tests.
2001-11-20 08:22:41 -05:00
Albert Cheng
ef7dfc021a [svn-r4593] Updated for the PIO performance files. 2001-11-07 10:32:21 -05:00
Albert Cheng
8f0acc1697 [svn-r4547] Description:
Revise the beginning comment block with "better" wording,
    at least better to me. :-)
Platforms tested:
    chkmanifest it in eirene.
2001-10-16 11:40:38 -05:00
Albert Cheng
1ee381c552 [svn-r4475] Updated with newly added file. 2001-09-26 00:39:48 -05:00
Bill Wendling
5e834c4cbc [svn-r4466]
Purpose:
    Feature Add
Description:
    Added "install-example" and "install-all" to the Makefile system.
    The behaviour of the "make install*" options:

        make install          - Installs binaries, libraries, include
                                files, and example programs.
        make install-examples - Installs only the example programs.
                                The directories are:

                            ${prefix}/doc/hdf5/examples/{c,c++,fortran}

        make install-all      - Install the binaries, libraries, include
                                files, example programs, and
                                documentation. The whole kit-n'-caboodle.
        make uninstall-examples - Get rid of those example files (but not
                                  the ${prefix}/doc/hdf5/examples/...
                                  directories)

    There's a new bin/ program which helps create directories which are
    deeply nested called "mkdirs". It's a simple shell script.
Platforms tested:
    Linux
2001-09-21 18:50:15 -05:00
Albert Cheng
a70c5b5a0e [svn-r4450] Updated. 2001-09-18 00:56:34 -05:00
Bill Wendling
c5bebe9ddf [svn-r4387]
Purpose:
    Update
Description:
    Added new test files
2001-08-18 03:57:06 -05:00
Albert Cheng
510a1b3415 [svn-r4368] Purpose:
updated
Platforms tested:
    bin/chkmanifest
2001-08-16 11:15:13 -05:00
Quincey Koziol
6c16b1f8fb [svn-r4350] Purpose:
Update manifest..
2001-08-14 15:05:03 -05:00
Albert Cheng
072bbbd9cb [svn-r4347] Purpose:
New feature
Description:
    Added perform programs to test the HDF5 library performance.  Programs
    are installed in directory perform/.
Platforms tested:
    eirene
2001-08-14 13:54:46 -05:00
Quincey Koziol
26f7410fb7 [svn-r4330] Purpose:
Update missing files.
Platforms tested:
    Eyeballs 2.1
2001-08-12 08:30:20 -05:00
Bill Wendling
b5d11111b0 [svn-r4292]
Purpose:
    Bug Fix
Description:
    The way we were generating Dependencies and .depend files was broken.
    If the $srcdir or other macros began with a ".", then it would match
    anything and cause problems since it would then overwrite the
    beginning of the header file's path.
Solution:
    Wrote a Perl script which can handle this type of weirdness better.
    It's only used when the environment is a GNU one with a GCC
    compiler...
Platforms tested:
    Linux
2001-08-01 16:00:25 -05:00
Quincey Koziol
a836c9bf45 [svn-r4280] Purpose:
Include new 'testmeta' source.
2001-07-30 15:02:48 -05:00
Pedro Vicente Nunes
a979452f69 [svn-r4159]
Purpose:


added CW doc to manifest


Description:
Solution:
Platforms tested:
2001-07-09 13:35:23 -05:00
Elena Pourmal
b2375a85c1 [svn-r4114]
Purpose:
    Maintenance
Description:
    Source directory has been rearranged.                                                                        INSTALL*, HISTORY.txt and RELEASE.txt were moved to the release_docs directory.                              *.zip files were moved to the windows directory.                                                             README file was renamed to README.txt                                                                        MANIFEST was updated to reflect those changes.
2001-07-05 11:36:40 -05:00
Dan Wells
cf5d06ef36 [svn-r4111]
Purpose:
    Feature
Description:
    Changed Pablo source code to allow the user to build the instrumented
    library to link with either the Trace Libraries or Pablo PCF.
Solution:
    Added conditionally compiled code to routines in the pablo subdirectory.
    Also added a new file PabloHDF_MPIO.c containing all of the MPI I/O code
    for better code structure.
Platforms tested:
    Solaris 32-bit, Irix 64
2001-07-05 10:14:24 -05:00
Frank Baker
1912327dce [svn-r4095]
Purpose:
    Adding two new files (doc/html/fortran/F90Flags.html, and
    doc/html/fortran/h5_FORTRAN.html) to FORTRAN portion of
    reference manual.
Platforms tested:
    IE 5
2001-07-02 13:18:27 -05:00
Barbara Jones
790cc5a280 [svn-r4056]
Purpose:
    Added footer-ncsalogo.gif to the MANIFEST
Description:
    Fixes problem where NCSA logo caused broken link
2001-06-22 13:46:26 -05:00
Pedro Vicente Nunes
437d2abde9 [svn-r4009] updated manifest 2001-06-15 14:02:48 -05:00
Pedro Vicente Nunes
1bac62e0de [svn-r3979] image example 2001-06-09 00:04:08 -05:00
Pedro Vicente Nunes
9d5ea1dde5 [svn-r3978] manifest add files 2001-06-08 22:57:33 -05:00
Pedro Vicente Nunes
3a5b6aff1e [svn-r3975] added image and lite files 2001-06-07 11:17:28 -05:00
Bill Wendling
a56b6bedd4 [svn-r3950] Purpose:
Updated
Description:
    Showed removal of versinfo
2001-05-29 14:43:29 -05:00
Bill Wendling
0d2d6fb97d [svn-r3933] Purpose:
Updated to reflect removal of bin/ directory in fortran/ and c++/
    directories.
2001-05-15 13:05:58 -05:00
Elena Pourmal
ac946ee749 [svn-r3922]
Purpose:
    Bug fix
Description:
    There was a typo in the gif.h path that I overlooked first time.
Solution:
    Fixed a typo. bin/chkmanifest does not complain anymore.
Platforms tested:
    baldric
2001-05-12 14:12:25 -05:00
Rushabh Doshi
2eb5516b09 [svn-r3919]
Purpose:
    Adding new feature
Description:
    Added gif2h5 and h52gif conversion utilities
Solution:
    The utilites follow the framework built for the gif2hdf and hdf2gif
    utilities for hdf4. The main files modified were those that read the
    H5 file and those that write H5 file. In the future, if you wish to
    continue with the framework and extend it to .png or some other fileformat
    the main files to edit will be the gif reader and writer.
    One point to note with h52gif. You have to specify the exact location of
    the image and the palette that it links to. You can choose not to specify
    a palette (uniform grayscale chosen in this case) but you must specify
    image location. In the future, someone could edit the readhdf.c source
    to enable the reader to parse the hdf file and select all images with
    corresponding palettes.
Platforms tested:
    modi4 , eirene , hawkwind , arabica , Ren (NT 4.0) , Personal box (win2k)
2001-05-12 12:55:47 -05:00
Albert Cheng
9f0c10b507 [svn-r3883] Updated for newly added files. 2001-05-01 17:32:33 -05:00
Elena Pourmal
4f19d133e7 [svn-r3873]
Purpose:
    Maintenace
Description:
    Added new files ./fortran/src/h5_f.c and ./fortran/src/h5_ff.f90
    and removed old ones (h5f.c and h5ff.f90)
2001-04-28 20:12:16 -05:00
Elena Pourmal
c048eed3be [svn-r3859]
Purpose:
     Windows F90 port
Description:
     all_withf90.zip file conyains all necessary projects to build
     and test HDF5 library (both C and F90) on Windows platforms
Platforms tested:
     Windows 98
2001-04-26 22:30:55 -05:00
Bill Wendling
0e0ad103de [svn-r3856] Purpose:
Update
Description:
    Added the new testfiles.
2001-04-24 18:10:15 -05:00
Albert Cheng
bf5b897dc9 [svn-r3850] Updated for the added file. 2001-04-24 16:11:35 -05:00
Quincey Koziol
e0ae710109 [svn-r3813] Purpose:
Update..
Description:
    Add OSF5 files.
2001-04-16 10:26:43 -05:00
Albert Cheng
d5d9c57d14 [svn-r3775] Purpose:
Updated for the removal of pablo/ProcTrace.inc
Platforms tested:
    bin/chkmanifest it in eirene
2001-04-04 17:05:56 -05:00
Bill Wendling
3ad27d3fac [svn-r3647] Purpose:
Update
Description:
    Added the ./c++/test/th5s.h5 file to the MANIFEST
Platforms tested:
    Linux
2001-03-15 14:20:25 -05:00
Bill Wendling
704300d992 [svn-r3630] Purpose:
Update
Description:
    Added new test for C++ library
Platforms tested:
    Linux
2001-03-14 13:30:42 -05:00
Elena Pourmal
22f31e6cc6 [svn-r3608]
Purpose:
    Bug fix
Description:
    ./fortran/testpar/thdf5.f90 line was included twice in the file
Solution:
    Removed.
2001-03-12 12:59:45 -05:00
Bill Wendling
d54e43ca01 [svn-r3580] Purpose:
Update
Description:
    Added the h5tools_utils.* files.
Platforms tested:
    Linux
2001-03-09 11:47:46 -05:00
Bill Wendling
5b4d7c4255 [svn-r3565] Purpose:
Update
Description:
    Added new tutorial examples.
Platforms tested:
    Linux
2001-03-08 12:38:06 -05:00
Bill Wendling
c501c12cda [svn-r3545] Purpose:
Update
Description:
    Added the new C++ test files.
Platforms tested:
    Linux
2001-03-05 11:25:56 -05:00
Bill Wendling
b8a613b64b [svn-r3509] Purpose:
Update
Description:
    Moved talign from tools directory to tools/lib directory
2001-02-23 17:23:43 -05:00
Bill Wendling
2fd7cbcfdd [svn-r3494] Purpose:
Updated
Description:
    Reflecting the code movements in the tools directory.
Platforms tested:
    Linux
2001-02-22 17:09:28 -05:00
Robert E. McGrath
e8ff838cf3 [svn-r3486]
Purpose:
    Removing junk file from tools tests.
Description:
    Accidently checked in a file that is not used.
2001-02-22 16:34:10 -05:00
Bill Wendling
4ba0759700 [svn-r3448] Purpose:
update
Description:
    Modified to reflect removal of the h4-h5 test files.
Platforms tested:
    Guessed
2001-02-19 11:52:30 -05:00
Albert Cheng
7af4310aa2 [svn-r3441] Purpose:
Updated
Platforms tested:
    bin/chkmanifest
2001-02-18 08:17:32 -05:00
Bill Wendling
925a56fbb5 [svn-r3423] Purpose:
Update
Description:
    Updated with the new testfiles.
Platforms tested:
    Linux
2001-02-16 12:47:04 -05:00