H5Pget_layout
(hid_t plist
)
H5Pget_layout
returns the layout of the raw data for
a dataset. This function is only valid for dataset creation
property lists.
Note that a compact storage layout may affect writing data to
the dataset with parallel applications. See note in
H5Dwrite
documentation for details.
hid_t plist |
IN: Identifier for property list to query. |
H5D_COMPACT
H5D_CONTIGUOUS
H5D_CHUNKED
H5D_VIRTUAL
Otherwise, returns a negative value indicating failure.
SUBROUTINE h5pget_layout_f (prp_id, layout, hdferr) IMPLICIT NONE INTEGER(HID_T), INTENT(IN) :: prp_id ! Property list identifier INTEGER, INTENT(OUT) :: layout ! Type of storage layout for raw data ! possible values are: ! H5D_COMPACT_F ! H5D_CONTIGUOUS_F ! H5D_CHUNKED_F ! H5D_VIRTUAL_F INTEGER, INTENT(OUT) :: hdferr ! Error code ! 0 on success and -1 on failure END SUBROUTINE h5pget_layout_f
Release | Change |
1.10.0 |
H5D_VIRTUAL and H5D_VIRTUAL_F
added in this release. |