Sets the size of the chunks used to store a chunked layout dataset
Procedure:
H5P_SET_CHUNK ( plist, ndims, dim )
Signature:
herr_t H5Pset_chunk(hid_t plist,
int ndims,
const hsize_t * dim
)
Fortran90 Interface: h5pset_chunk_f
SUBROUTINE h5pset_chunk_f(prp_id, ndims, dims, hdferr)
IMPLICIT NONE
INTEGER(HID_T), INTENT(IN) :: prp_id ! Property list identifier
INTEGER, INTENT(IN) :: ndims ! Number of chunk dimensions
INTEGER(HSIZE_T), DIMENSION(ndims), INTENT(IN) :: dims
! Array containing sizes of
! chunk dimensions
INTEGER, INTENT(OUT) :: hdferr ! Error code
! 0 on success and -1 on failure
END SUBROUTINE h5pset_chunk_f
Parameters:
hid_t plist | IN: Dataset creation property list identifier |
int ndims | IN: The number of dimensions of each chunk |
const hsize_t * dim | IN: An array defining the size, in dataset elements, of each chunk |
Description:
H5P_SET_CHUNK sets the size of the chunks used to store a chunked layout dataset. This function is only valid for dataset creation property lists.
The ndims
parameter currently must be the same size as the rank of the dataset.
The values of the dim
array define the size of the chunks to store the dataset's raw data. The unit of measure for dim
values is dataset elements.
As a side-effect of this function, the layout of the dataset is changed to H5D_CHUNKED
, if it is not already so set. (See H5P_SET_LAYOUT.)
Returns:
Returns a non-negative value if successful; otherwise returns a negative value.
Example:
Include Bitbucket Server for Confluence: An error occured
Connection to Bitbucket Server could not be established. Verify that you have properly configured the Bitbucket Server application link for your Confluence space and that your Bitbucket Server instance is up and running. Error details: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
Include Bitbucket Server for Confluence: An error occured
Connection to Bitbucket Server could not be established. Verify that you have properly configured the Bitbucket Server application link for your Confluence space and that your Bitbucket Server instance is up and running. Error details: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
History:
Release | Change |
---|
1.8.16 | Added chunk size limit note to Description. |
--- Last Modified: August 07, 2019 | 12:08 PM