| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
| |
correct bug.
|
|
|
|
|
|
|
|
|
| |
the hyperslabs
being written out are contiguous in memory and on disk and write/read them as
one I/O operation (if the datatypes don't require conversion). This should be
a good performance boost for those situations. It's especially needed on the
ASCI Red (TFlops) machine. - QAK (from Albert's account on modi4 :-)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
H5F.c:
H5Flow.c:
H5Fprivate.h:
Joined work by Quincey, Robb and me to eliminate the initial writes
of BOOTBLOCK when the file is first created. Also, eliminate the
repeatedly encoding of BOOTBLOCK in the flushing code. Introduced
the eof_written flag to indicate when it is not necessary to go
do a dumb write at eof.
(But something is not right if the userblock is not zero.)
H5Fmpio.c:
Added code to allow setting the MPIO debug output mask via
the environment variable H5F_mpio_Debug.
|
| |
|
|
|
|
| |
SIGFPE during the test.
|
| |
|
|
|
|
|
| |
TFLOPS, T3E, O2K and SP2 users to do parallel configuration.
Still need to fill in more information.
|
|
|
|
|
|
| |
fixed a typo of pointer comparing with char.
h5tools.h:
Removed ^M from the file. SGI does not like them.
|
| |
|
|
|
|
| |
i forgot to remove an extra if else that isn't needed anymore
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
changing the display_numeric_data abd the display_string to use the h5dump_sprint
from the tools lib.
added a section to initialize the h5dump_t variable in both these functions.
in the display_string had to remove the extra quotes that gets displayed when
printing.
in h5dump_sprint i changed the for loop in the case of the string.
I added a check to see if the last character is a \0. it was being printed
before.
|
|
|
|
| |
fixed a typo in the bat file i just put in
|
|
|
|
| |
added a the h5dump batch file i created to test the the dumper
|
| |
|
|
|
|
|
|
| |
from the v4.1r3
dumper.
|
| |
|
|
|
|
| |
fixed another bug that i made when I started to merge the 2 libs together.
|
| |
|
| |
|
| |
|
|
|
|
| |
for noticing it, Nancy.
|
|
|
|
| |
he dump tool
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
incorportated all
the constants and from dumputil to to the tools lib and merged h5dump_fixtype
together. I had to add an extra parameter to the function to specify what action
should be taken when it hits H5T_STRING in the case statement. if the parameter
(strDUAction) is true then it does what it use to do in dumputil but if it is false
then it will do what it originally did in this file.
I also put the h5dump_sprint functions into the same file. it isn't really merged yet.
i just wanted to get everything into a file and then worry about the merging of this
function. The toolslib way of h5dump_sprint takes an extra parameter. If this
parameter is set to NULL then it will do the dumputil's version of this function.
like i said this is just the first step i am taking. it will be merged better later.
the rest of the changes to the other files were related to the above changes.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
DatatypesEnum.html
EnumMap.gif
Added enumeration datatypes -- First pass, only minimal editing.
Intro paragraph in Datatypes.html; details in DatatypesEnum.html.
EnumMap.gif is a figure for DatatypesEnum.html.
Tools.html
Added new h5toh4 supported object and data type.
H5.intro.html
Corrected transposed "start coordinates" in Example 1.
|
| |
|
|
|
|
| |
(This file may have been replaced by multiple files already.)
|
|
|
|
|
|
|
| |
yesterday.
changed ifdef WIN32 && _HDF5USEDLL_ to if defined(WIN32) && defined(_HDF5USEDLL_)
and did something similar for the not cases.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
----------------------
./tools/h5ls.c
Added a `--address' (`-a') switch which causes h5ls to display
file addresses for raw data. For contiguous datasets it's just
a nice simple number, but for chunked datasets it's a list of
logical dataset coordinates, file addresses, filter masks, and
storage sizes.
Changed `--dump' switch to `--data'.
./src/H5D.c
./src/H5F.c
./src/H5Fprivate.h
Enhanced the indexed-storage B-tree iterator so it can dump
raw data addresses (and other info) to the standard error
stream.
Added H5Ddebug() so h5ls has a way to dump addresses for
datasets. I'm not sure what else this API function should do,
so I think we should discuss it before we document it. So far,
h5ls is the only thing that uses it, and we can easily change
that.
./src/H5Tconv.c
./test/dtypes.c
Finally had a chance to verify Paul's H5T_conv_s_s (general
string to string conversions) bug fixes and incorporate them
into H5T_conv_f_f (general floating-point to floating-point
conversions) and H5T_conv_i_i (general integer to integer
conversons). Thanks Paul.
./src/H5D.c
./src/H5S.c
./src/H5Sprivate.h
Added performance timers around data space read and write
callbacks. They were already there for the gather/scatter
callbacks.
The timings for read/write callbacks are displayed along with
gather/scatter when data space debugging is turned on.
./bin/iostats
Updated to print totals. Added a `--fast' option that doesn't
do any output except the totals and is much faster.
./bin/trace
Changed __unused__ to UNUSED to match source code.
./config/gnu-flags
Updated error message for pgcc. I've sent bug reports to the
pgcc people but the new version still has the same bug.
./configure.in
./config/conclude.in
./config/depend.in
Fixed dependencies for non-GNU makes when run in a directory
other than the hdf5 source tree.
Updated GNU `make dep' rules to copy the distributed
dependencies for non-GNU makes into the source tree when run
in some other directory.
|
| |
|
| |
|
|
|
|
|
|
|
| |
a fileindex
hi and lo. this number and the dev id will allow us to determine if the
file is currently open on NT
|
|
|
|
|
|
| |
the dll version
it was causing some crashes otherwise
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
parallel I/O T3E port
exposed. These are more changes that everyone should pick up.
|
| |
|