diff --git a/doc/html/RM_H5P.html b/doc/html/RM_H5P.html index 6be0a9bb29..8c314a7106 100644 --- a/doc/html/RM_H5P.html +++ b/doc/html/RM_H5P.html @@ -170,6 +170,9 @@ many different parameters to be easily manipulated.
The data sieve buffer is used when performing I/O on datasets - in the file. Using a buffer which is large anough to hold + in the file. Using a buffer which is large enough to hold several pieces of the dataset being read in for hyperslab selections boosts performance by quite a bit.
@@ -2167,6 +2170,101 @@ facilitate moving easily between them. +
H5Pset_small_data_block_size
(hid_t fapl_id
,
+ hsize_t size
+ )
+ H5Pset_small_data_block_size
reserves blocks of
+ size
bytes for the contiguous storage of the raw data
+ portion of small datasets.
+ The HDF5 library then writes the raw data from small datasets
+ to this reserved space, thus reducing unnecessary discontinuities
+ within blocks of meta data and improving IO performance.
+ + A small data block is actually allocated the first time a + qualifying small dataset is written to the file. + Space for the raw data portion of this small dataset is suballocated + within the small data block. + The raw data from each subsequent small dataset is also written to + the small data block until it is filled; additional small data blocks + are allocated as required. +
+ The HDF5 library employs an algorithm that determines whether
+ IO performance is likely to benefit from the use of this mechanism
+ with each dataset as storage space is allocated in the file.
+ A larger size
will result in this mechanism being
+ employed with larger datasets.
+
+ The small data block size is set as an allocation property in the
+ file access property list identified by fapl_id
.
+
+ Setting size
to zero (0
) disables the
+ small data block mechanism.
+
fapl_id
+ size
+ 2048
.
+ H5Pget_small_data_block_size
(hid_t fapl_id
,
+ hsize_t *size
+ )
+ H5Pget_small_data_block_size
retrieves the
+ current setting for the size of the small data block.
+
+ If the returned value is zero (0
), the small data
+ block mechanism has been disabled for the file.
+
fapl_id
+ size
+
The array memb_addr
specifies the offsets within the
virtual address space, from 0
(zero) to
- HADDR_MAX
, at wihch each type of data storage begins.
+ HADDR_MAX
, at which each type of data storage begins.
If relax
is set to TRUE
(or 1
),
then opening an existing file for read-only access will not fail
@@ -2989,7 +3087,7 @@ facilitate moving easily between them.
memb_addr
0
(zero) to HADDR_MAX
,
- at wihch each type of data storage begins.
+ at which each type of data storage begins.
relax
TRUE
.
@@ -3176,7 +3274,7 @@ facilitate moving easily between them.
H5Pset_fapl_split
is a compatability function that
+ H5Pset_fapl_split
is a compatibility function that
enables the multi-file driver to emulate the split driver from
HDF5 Releases 1.0 and 1.2.
The split file driver stored metadata and raw data in separate files
@@ -3458,7 +3556,7 @@ fid=H5Fcreate("PointA",H5F_ACC_TRUNC,H5P_DEFAULT,fapl);
H5Pset_driver
sets the file driver,
driver_id
, for a file access or data transfer
property list, plist_id
, and supplies an
- optional struct containing the driver-specific properites,
+ optional struct containing the driver-specific properties,
driver_info
.
Need driver_info
struct definition.
@@ -3472,7 +3570,7 @@ fid=H5Fcreate("PointA",H5F_ACC_TRUNC,H5P_DEFAULT,fapl);
plist_id
driver_id
- driver_info
H5Pget_driver
returns the identifier of the
low-level file driver associated with the file access property list
- or data transfer propert list plist_id
.
+ or data transfer property list plist_id
.
Valid driver identifiers with the standard HDF5 library distribution include the following: @@ -3528,7 +3626,7 @@ fid=H5Fcreate("PointA",H5F_ACC_TRUNC,H5P_DEFAULT,fapl);