diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-05-16 16:41:43 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-05-16 16:41:43 (GMT) |
commit | 58cc7fb19a902b4653bede798e633caaeb214528 (patch) | |
tree | 4764b17530efbfbc7e38224f38456b51c318ebdf /tools/lib/h5tools.h | |
parent | c0d407a481960c693cdf210c4335dcc1f37e9001 (diff) | |
download | hdf5-58cc7fb19a902b4653bede798e633caaeb214528.zip hdf5-58cc7fb19a902b4653bede798e633caaeb214528.tar.gz hdf5-58cc7fb19a902b4653bede798e633caaeb214528.tar.bz2 |
[svn-r13757]
h5repack and h5diff hyperslab I/O
changed the limit on which hyperslab I/O is done from 1GB to 128MB
h5repack currently tests this feature by defining a dataset with dimensions of 128MB + 1byte (the datum being 1 byte integer), in which a 1Kb hyperslab was written.
tested: linux
there were some errors in running the tests, but these were in the library, due to a recent check-in that will be fixed shortly (at least we hope :-) )
Diffstat (limited to 'tools/lib/h5tools.h')
-rw-r--r-- | tools/lib/h5tools.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/h5tools.h b/tools/lib/h5tools.h index fa05a9f..a0f54736 100644 --- a/tools/lib/h5tools.h +++ b/tools/lib/h5tools.h @@ -45,7 +45,7 @@ /* * Maximum size used in a call to malloc */ -#define H5TOOLS_MALLOCSIZE ((size_t)1024 * 1024 * 1024) +#define H5TOOLS_MALLOCSIZE (128 * 1024 * 1024) /* format for hsize_t */ #define HSIZE_T_FORMAT "%"H5_PRINTF_LL_WIDTH"u" |