summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r269] Added more searching for config files. The order is now:Robb Matzke1998-02-132-76/+97
| | | | | | | | | | cpu-vendor-os vendor-os cpu-os cpu-vendor os vendor cpu
* [svn-r268] Revised the comment block of H5Cset_mpi. Also fixed a small bug inAlbert Cheng1998-02-131-4/+33
| | | | the same function in the call of MPI_Comm_dup.
* [svn-r267] Example has been updated to show how to read a hyperslab (column) ↵Elena Pourmal1998-02-131-3/+44
| | | | | | from a chunked dataset.
* [svn-r266] Fixed some install and uninstall probs.Robb Matzke1998-02-121-17/+25
|
* [svn-r265] Added the alpha-dec-osf4.0 fileRobb Matzke1998-02-121-0/+1
|
* [svn-r264] Some versions of install allow only one file name at a time.Robb Matzke1998-02-121-2/+6
|
* [svn-r263] Configs for native compiler on the DEC alpha.Robb Matzke1998-02-121-0/+54
|
* [svn-r262] Changed an array to be allocated on the heap instead of the stack.Robb Matzke1998-02-121-6/+10
| | | | | Some OS's have problems with large arrays created on the stack and I had forgotten about that when I wrote this test.
* [svn-r261] Added entry for test/testphdf5.cAlbert Cheng1998-02-121-0/+1
|
* [svn-r260] Initial version of PHDF5 test/example program. Commit this one firstAlbert Cheng1998-02-121-0/+346
| | | | before I destroy it by accident.
* [svn-r259] Revised it to work properly with "configure --enable-parallel". ThisAlbert Cheng1998-02-121-36/+1
| | | | | | | | | | | | | | | | | should be launched by the following environment variables setting (in csh shell style.) #!/bin/csh -f set mpi1_inc="" #mpi-1 include set mpi1_lib="" #mpi-1 library set mpio_inc=-I$HOME/ROMIO/include #mpio include set mpio_lib="-L$HOME/ROMIO/lib/IRIX64/" #mpio library setenv MPI_INC "-DHAVE_PARALLEL $mpi1_inc $mpio_inc" setenv MPI_LIB "$mpi1_lib $mpio_lib" ./configure --enable-parallel
* [svn-r258] Problem:Albert Cheng1998-02-121-2/+2
| | | | | | | | | | | | | | When configure with enable-paralle, H5detect and debug were not compiled with $(LIBS) but were executed via RUNTEST (mpirun ...). The O2K mpirun can't handle such an object code. Solutions: Compile them also with $(LIBS) which contains the mpi library names. Could have just removed $(RUNTEST) but in some parallel system, all object file may have to be launched by some mpirun-equivalent command anyway. Platforms tested: O2K
* [svn-r257] H5F.c:Albert Cheng1998-02-122-10/+6
| | | | | | | | | | | | | Added modification entry to H5F_open header. Should have been done when i added the access template argument. H5Fprivate.h: The hardcode setting to "define MPIO as the default IO when HAVE_PARALLEL is set" cause all test programs to fail since none of them is coded with the needed MPI_Initialize. Change it back to the previous setting of using sequential I/O allows user to use sequential I/O by default and use MPIO only if he/she explicitely asks for it via access template setting.
* [svn-r256] Target 'all' appeared twice, thus make repeated an extra time.Albert Cheng1998-02-121-1/+1
| | | | | No harm, just looked strange. Removed 'all' from the second appearance. Tested in a O2K.
* [svn-r255] Added a teeny tiny little miniscule amount of support for strings ↵Robb Matzke1998-02-121-0/+26
| | | | | | because the VB-API work stores comments in some of the VB tables.
* [svn-r254] *** empty log message ***Robb Matzke1998-02-121-1/+1
|
* [svn-r253] Parameter H5ACC_DEFAULT was replaced by H5ACC_OVERWRITE in the ↵Elena Pourmal1998-02-111-1/+1
| | | | call to H5Fcreate.
* [svn-r252] Call to H5Cget_layout has been added to check if the dataset is ↵Elena Pourmal1998-02-111-1/+7
| | | | chunked.
* [svn-r251] Typo in a comment has been fixed.Elena Pourmal1998-02-111-1/+1
|
* [svn-r250] Spelling of "extendible" has been fixed.Elena Pourmal1998-02-112-4/+4
|
* [svn-r249] configure.in configure:Albert Cheng1998-02-113-7/+7
| | | | | | | Changed default RUNTEST to 'mpi -np 1'. src/Makefile.in: Use $(RUNTEST) to run programs if enable-parallel is on.
* [svn-r248] Added new filesRobb Matzke1998-02-111-0/+1
|
* [svn-r247] Specifies that these platforms are bigendian architectures.Robert Kim Yates1998-02-102-0/+2
| | | | CVS :----------------------------------------------------------------------
* [svn-r246] Explains how to set up vars/files before configuring for parallel ↵Robert Kim Yates1998-02-101-0/+70
| | | | | | | HDF5 on IBM SP using MPI-IO. CVS :----------------------------------------------------------------------
* [svn-r245] Added 3 files to aid in configuring for parallel HDF5 on IBM SP.Robert Kim Yates1998-02-101-0/+3
| | | | See INSTALL.ibm.sp.parallel.
* [svn-r244] Updated with changes in html directoryRobb Matzke1998-02-101-2/+5
|
* [svn-r243] In the files list h5_extend_read.c was replaced by h5_chunk_read.cElena Pourmal1998-02-101-1/+1
|
* [svn-r242] Example showing how to read from chunked dataset has been added.Elena Pourmal1998-02-101-0/+139
|
* [svn-r241] h5_extend_read.c shows how to read from chunked dataset.Elena Pourmal1998-02-101-141/+0
| | | | | Program name does not reflect its purpose. Removed. Will be added under new name h5_chunk_read.c
* [svn-r240] Removed warnings on Irix64Robb Matzke1998-02-101-12/+6
|
* [svn-r239] Release fails if MANIFEST is not consistent with CVS/Entries. ThisRobb Matzke1998-02-101-0/+58
| | | | | should prevent incomplete releases as a result of people forgetting to add files to MANIFEST.
* [svn-r238] Added and removed files for release based on contents of CVS/Entries.Robb Matzke1998-02-101-2/+12
|
* [svn-r237] I am checking in changes made by Robb. Turn off another two tediousAlbert Cheng1998-02-101-2/+4
| | | | | | warnings. # -woff 1209 about constant expressions # -woff 1196 about __vfork() being implicitly declared, config prob.
* [svn-r236] Example showing how to group objects in the HDF5 file is added.Elena Pourmal1998-02-101-0/+84
|
* [svn-r235] Comments have been added.Elena Pourmal1998-02-101-2/+16
|
* [svn-r234] Cleaned up conversion between MPIOffset and haddr_t in H5Fmpio.c.Robert Kim Yates1998-02-102-40/+70
| | | | In H5Fprivate.h made MPI-IO the default low-level I/O module when HAVE_PARALLEL.
* [svn-r233] Fixed order of arguments to print_func.Quincey Koziol1998-02-101-8/+8
|
* [svn-r232] Problem: Parallel H5Fcreate failed if file doesnot exist. When theAlbert Cheng1998-02-101-1/+13
| | | | | | | | | | | | | | file does not exist, the code tried to open the file with EXCL CREATE. ROMIO cannot handle file-open with EXCL Create due to racing problem. The first process creates the file which then fails all other processes. Solution: In the parallel code, turn on TRUNC mode to allow "late" open calls to succeed too. It is safe to force TRUNC mode since the file is known non-existing at that point. The MPIO implementation has to provide the real solution. Platform tested: O2K with ROMIO.
* [svn-r231] Purpose: Fix a bug.Elena Pourmal1998-02-091-1/+2
| | | | | | | | Problem: Data type handle was not released. Solution: Call to H5Tclose has been added. Platforms tested: Sun Sparc (baldric)
* [svn-r230] Changes were actually made by Robb. I am commiting them for himAlbert Cheng1998-02-0945-1843/+1903
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | while he is visiting LLNL. I changed the default creation template offset and length to 4. Will fix the problem later. Changes since 19980205 ---------------------- ./src/H5H.c ./src/H5Hprivate.h ./src/H5O.c ./src/H5Ocont.c ./src/H5Odtype.c ./src/H5Oefl.c ./src/H5Olayout.c ./src/H5Oname.c ./src/H5Onull.c ./src/H5Oprivate.h ./src/H5Odspace.c ./src/H5Ostab.c ./src/debug.c ./html/H5.format.html Added an extra 4-byte field after the heap magic number for alignment on the DEC alpha. Changed object header message alignment to 8-bytes. ./src/H5F.c ./src/H5Farray.c ./src/H5Ffamily.c ./src/H5Fistore.c ./src/H5Flow.c ./src/H5Fprivate.h ./src/H5Fsec2.c ./src/H5Fstdio.c ./src/H5Gnode.c ./src/H5O.c ./src/H5Odtype.c ./src/H5P.c ./src/H5Pprivate.h ./src/H5T.c ./src/H5Tconv.c ./src/H5Tpkg.h ./src/H5Tpublic.h ./src/H5V.c ./src/H5detect.c ./test/cmpd_dset.c ./test/dsets.c ./test/dtypes.c ./test/extend.c ./test/hyperslab.c ./test/istore.c ./test/th5p.c ./test/theap.c Fixed a few irix64 warnings regarding size_t vs. int, variables set but not used, printf formats ./config/irix64 Added `-woff 1196' to get rid of errors about __vfork() being implicitly defined in a system header file. ./src/H5B.c Fixed a stack alignment problem.
* [svn-r229] New examples have been created in the examples directory:Elena Pourmal1998-02-085-0/+652
| | | | | | | | | | | | | | | | h5_write.c - stores INT array as INT32 little endian dataset in the HDF5 file. h5_read.c - gets info about the dataset; reads hyperslab from the dataset in the file into 2-dim slice of the 3 dimensional array. h5_compund.c - creates compound dataset and writes it to the file; reads subsets of the dataset. h5_extend_write.c - writes extendable dataset. h5_extend_read.c - gets info about the dataset; reads dataset and one of the chunks.
* [svn-r228] Old example test_write.c has been removed from the examples ↵Elena Pourmal1998-02-081-130/+0
| | | | directory.
* [svn-r227] Old example test_read.c has been deleted from the examples directory.Elena Pourmal1998-02-081-98/+0
|
* [svn-r226] Turned off couple tedious warning messages. One (1174) due to ↵Albert Cheng1998-02-061-1/+5
| | | | | | | incorrect local O2K system configuration. The other (1429 about long long) is ignorable since long long is standard in the next version of ANSI C.
* [svn-r225] H5F_open has been changed due to the PHDF work. It needed an extraAlbert Cheng1998-02-061-1/+1
| | | | argument of access-template.
* [svn-r224] Initial implementation of the upper levels of PHDF5. TheAlbert Cheng1998-02-069-34/+207
| | | | | MPIO lower interface layer (H5Fmpio.c) has been commited by Kim already. All PHDF5 codes are "bracket'ed" by #ifdef HAVE_PARALLEL macro.
* [svn-r223] Somehow the default create template header is causing heap routinesAlbert Cheng1998-02-061-2/+2
| | | | | | failures. Row back the offset and length sizes to 4 (instead of sizeof(size_t)) for now to pass all tests. Will fix it later. (Also changed the default create template in H5F.c).
* [svn-r222] Problem: UINT64DECODE and INT64DECODE were not working because it didAlbert Cheng1998-02-051-6/+6
| | | | | | | | | not assign the decoded value back to n. Solution: Removed temporary variable _n (don't see why it is needed.) Use the variable n directly. Platform tested: IRIX64 -64
* [svn-r221] In H5F_mpio_open, if truncation was requested, all processes must ↵Robert Kim Yates1998-02-051-21/+24
| | | | | | | call MPI_File_set_size (a collective operation). Also changed/added some error messages.
* [svn-r220] Changes since 19980204Robb Matzke1998-02-052-3/+3
| | | | | | | | | | | ---------------------- ./src/H5H.c Changed a temporary buffer from 20 bytes to 52 bytes. ./test/tfile.c Default sizes for file addresses and sizes are the same as sizeof(size_t) on the machine that creates the file.