mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-30 15:32:37 +08:00
[svn-r6491]
Purpose: Catching up with the C library Description: Updated documentation files to include information on the following functions h5iget_name_f h5tis_variavle_str_f h5zunregister_f h5zfilter_avail_f h5pset_shuffle_f h5pset_fletcher32 h5pset_edc_check_f h5pget_edc_check_f h5dfill_f Solution: Platforms tested: arabica(C and F90), burrwhite (pgcc and pgf90), modi4 (F90 and parallel) Misc. update:
This commit is contained in:
parent
621f8c50b6
commit
ec51828b76
@ -390,6 +390,58 @@ FORTRAN Dataset API -- h5d
|
||||
END SUBROUTINE h5dvlen_get_max_len_f
|
||||
</pre>
|
||||
|
||||
|
||||
|
||||
<p>
|
||||
<p>
|
||||
<hr>
|
||||
<p>
|
||||
<a name="h5dfill_f">
|
||||
<p>
|
||||
</a>
|
||||
|
||||
|
||||
<dt><strong>FORTRAN interface:</strong>   <strong>h5dfill_f</strong>
|
||||
<pre>
|
||||
SUBROUTINE h5dfill_f(fill_value, space_id, buf, hdferr)
|
||||
IMPLICIT NONE
|
||||
TYPE, INTENET(IN) :: fill_value ! Fill value; may be have one of the
|
||||
! following types:
|
||||
! INTEGER, REAL, DOUBLE PRECISION, CHARACTER
|
||||
INTEGER(HID_T), INTENT(IN) :: space_id ! Memory dataspace selection identifier
|
||||
TYPE, DIMENSION(*) :: buf ! Memory buffer to fill in; must have
|
||||
! the same datatype as fill value
|
||||
INTEGER, INTENT(OUT) :: hdferr ! Error code
|
||||
! 0 on success and -1 on failure
|
||||
END SUBROUTINE h5dfill_f
|
||||
</pre>
|
||||
|
||||
|
||||
<p>
|
||||
<p>
|
||||
<hr>
|
||||
<p>
|
||||
<a name="h5dget_space_status_f">
|
||||
<p>
|
||||
</a>
|
||||
|
||||
|
||||
<dt><strong>FORTRAN interface:</strong>   <strong>h5dget_space_status_f</strong>
|
||||
<pre>
|
||||
SUBROUTINE h5dget_space_status_f(dset_id, flag, hdferr)
|
||||
IMPLICIT NONE
|
||||
INTEGER(HID_T), INTENT(IN) :: dset_id ! Dataset identifier
|
||||
INTEGER, INTENET(OUT) :: flag ! Status flag ; possible values:
|
||||
! H5D_SPACE_STS_ERROR_F
|
||||
! H5D_SPACE_STS_NOT_ALLOCATED_F
|
||||
! H5D_SPACE_STS_PART_ALLOCATED_F
|
||||
! H5D_SPACE_STS_ALLOCATED_F
|
||||
INTEGER, INTENT(OUT) :: hdferr ! Error code
|
||||
! 0 on success and -1 on failure
|
||||
END SUBROUTINE h5dget_space_status_f
|
||||
</pre>
|
||||
|
||||
|
||||
</dl>
|
||||
|
||||
<p>
|
||||
@ -399,11 +451,12 @@ FORTRAN Dataset API -- h5d
|
||||
|
||||
<!-- #BeginLibraryItem "/ed_libs/Footer.lbi" --><address>
|
||||
<a href="mailto:hdfhelp@ncsa.uiuc.edu">HDF Help Desk</a>
|
||||
|
||||
<br>
|
||||
Describes HDF5 Release 1.5, Unreleased Development Branch
|
||||
</address><!-- #EndLibraryItem -->
|
||||
|
||||
Last modified: 5 March 2003
|
||||
Last modified: 19 March 2003
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
@ -42,11 +42,37 @@ FORTRAN Identifier API -- h5i
|
||||
!H5I_ATTR_F(6)
|
||||
!H5I_BADID_F(-1)
|
||||
INTEGER, INTENT(OUT) :: hdferr ! Error code
|
||||
! 0 on success, and -1 on failure
|
||||
|
||||
END SUBROUTINE h5iget_type_f
|
||||
</pre>
|
||||
|
||||
|
||||
<p>
|
||||
<p>
|
||||
<hr>
|
||||
<p>
|
||||
<a name="h5iget_name_f">
|
||||
<p>
|
||||
</a>
|
||||
|
||||
|
||||
<dt><strong>FORTRAN interface:</strong>   <strong>h5iget_name_f</strong>
|
||||
|
||||
<pre>
|
||||
SUBROUTINE h5iget_name_f(obj_id, buf, buf_size, hdferr)
|
||||
IMPLICIT NONE
|
||||
INTEGER(HID_T), INTENT(IN) :: obj_id ! Object identifier
|
||||
CHARACTER(LEN=*), INTENT(OUT) :: buf ! Buffer to hold object name
|
||||
INTEGER(SIZE_T), INTENT(IN) :: buf_size ! Buffer size
|
||||
INTEGER(SIZE_T), INTENT(OUT) :: name_size ! Name size
|
||||
INTEGER, INTENT(OUT) :: hdferr ! Error code
|
||||
! 0 on success, and -1 on failure
|
||||
|
||||
END SUBROUTINE h5iget_name_f
|
||||
</pre>
|
||||
|
||||
|
||||
</dl>
|
||||
|
||||
<p>
|
||||
@ -60,7 +86,7 @@ FORTRAN Identifier API -- h5i
|
||||
Describes HDF5 Release 1.5, Unreleased Development Branch
|
||||
</address><!-- #EndLibraryItem -->
|
||||
|
||||
Last modified: 14 July 2000
|
||||
Last modified: 19 March 2003
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
@ -219,8 +219,8 @@ FORTRAN Property List API -- h5p
|
||||
SUBROUTINE h5pset_deflate_f(prp_id, level, hdferr)
|
||||
IMPLICIT NONE
|
||||
INTEGER(HID_T), INTENT(IN) :: prp_id ! Property list identifier
|
||||
INTEGER, INTENT(IN) :: leveli ! Compression level
|
||||
INTEGER, INTENT(OUT) :: hdferr ! Error code
|
||||
INTEGER, INTENT(IN) :: level ! Compression level
|
||||
INTEGER, INTENT(OUT) :: hdferr ! Error code
|
||||
! 0 on success and -1 on failure
|
||||
|
||||
END SUBROUTINE h5pset_deflate_f
|
||||
@ -2234,6 +2234,100 @@ FORTRAN Property List API -- h5p
|
||||
! Failure: -1
|
||||
END SUBROUTINE h5pget_class_name_f
|
||||
</pre>
|
||||
|
||||
|
||||
<p>
|
||||
<p>
|
||||
<hr>
|
||||
<p>
|
||||
<a name="h5pset_shuffle_f">
|
||||
<p>
|
||||
</a>
|
||||
|
||||
|
||||
<dt><strong>FORTRAN interface:</strong>   <strong>h5pset_shuffle_f</strong>
|
||||
<pre>
|
||||
|
||||
SUBROUTINE h5pset_shuffle_f(prp_id, type_size, hdferr)
|
||||
IMPLICIT NONE
|
||||
INTEGER(HID_T), INTENT(IN) :: prp_id ! Property list identifier
|
||||
INTEGER, INTENT(IN) :: type_size ! Datatype size in bytes
|
||||
INTEGER, INTENT(OUT) :: hdferr ! Error code
|
||||
! 0 on success and -1 on failure
|
||||
|
||||
END SUBROUTINE h5pset_shuffle_f
|
||||
</pre>
|
||||
|
||||
|
||||
<p>
|
||||
<p>
|
||||
<hr>
|
||||
<p>
|
||||
<a name="h5pset_edc_check_f">
|
||||
<p>
|
||||
</a>
|
||||
|
||||
|
||||
<dt><strong>FORTRAN interface:</strong>   <strong>h5pset_edc_check_f</strong>
|
||||
<pre>
|
||||
|
||||
SUBROUTINE h5pset_edc_check_f(prp_id, flag, hdferr)
|
||||
IMPLICIT NONE
|
||||
INTEGER(HID_T), INTENT(IN) :: prp_id ! Dataset transfer property list identifier
|
||||
INTEGER, INTENT(IN) :: flag ! EDC flag; possible values
|
||||
! H5Z_DISABLE_EDC_F
|
||||
! H5Z_ENABLE_EDC_F
|
||||
INTEGER, INTENT(OUT) :: hdferr ! Error code
|
||||
! 0 on success and -1 on failure
|
||||
|
||||
END SUBROUTINE h5pset_edc_check_f
|
||||
</pre>
|
||||
|
||||
|
||||
<p>
|
||||
<p>
|
||||
<hr>
|
||||
<p>
|
||||
<a name="h5pget_edc_check_f">
|
||||
<p>
|
||||
</a>
|
||||
|
||||
|
||||
<dt><strong>FORTRAN interface:</strong>   <strong>h5pget_edc_check_f</strong>
|
||||
<pre>
|
||||
|
||||
SUBROUTINE h5pget_edc_check_f(prp_id, hdferr)
|
||||
IMPLICIT NONE
|
||||
INTEGER(HID_T), INTENT(IN) :: prp_id ! Dataset transfer property list identifier
|
||||
INTEGER, INTENT(OUT) :: flag ! EDC flag; possible values
|
||||
! H5Z_DISABLE_EDC_F
|
||||
! H5Z_ENABLE_EDC_F
|
||||
INTEGER, INTENT(OUT) :: hdferr ! Error code
|
||||
! 0 on success and -1 on failure
|
||||
|
||||
END SUBROUTINE h5pget_edc_check_f
|
||||
</pre>
|
||||
|
||||
|
||||
<p>
|
||||
<p>
|
||||
<hr>
|
||||
<p>
|
||||
<a name="h5pset_fletcher32_f">
|
||||
<p>
|
||||
</a>
|
||||
|
||||
|
||||
<dt><strong>FORTRAN interface:</strong>   <strong>h5pset_fletcher32_f</strong>
|
||||
<pre>
|
||||
|
||||
SUBROUTINE h5pset_fletcher32_f(prp_id, hdferr)
|
||||
IMPLICIT NONE
|
||||
INTEGER(HID_T), INTENT(IN) :: prp_id ! Dataset creation property list identifier
|
||||
INTEGER, INTENT(OUT) :: hdferr ! Error code
|
||||
! 0 on success and -1 on failure
|
||||
|
||||
END SUBROUTINE h5pset_fletcher32_f
|
||||
<p>
|
||||
<p>
|
||||
<hr>
|
||||
@ -2246,7 +2340,7 @@ FORTRAN Property List API -- h5p
|
||||
Describes HDF5 Release 1.5, Unreleased Development Branch
|
||||
</address><!-- #EndLibraryItem -->
|
||||
|
||||
Last modified: 14 March 2003
|
||||
Last modified: 19 March 2003
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
@ -193,7 +193,7 @@ FORTRAN Dataspace API -- h5s
|
||||
! Array to store max dimension
|
||||
! sizes
|
||||
INTEGER, INTENT(OUT) :: hdferr ! Error code
|
||||
! 0 on success and -1 on failure
|
||||
! Dataspace rank on success and -1 on failure
|
||||
|
||||
END SUBROUTINE h5sget_simple_extent_dims_f
|
||||
</pre>
|
||||
|
@ -1255,6 +1255,30 @@ FORTRAN Datatype API -- h5t
|
||||
</pre>
|
||||
|
||||
|
||||
<p>
|
||||
<p>
|
||||
<hr>
|
||||
<p>
|
||||
<a name="h5tis_variable_str_f">
|
||||
<p>
|
||||
</a>
|
||||
|
||||
|
||||
<dt><strong>FORTRAN interface:</strong>   <strong>h5tis_variable_str_f</strong>
|
||||
<pre>
|
||||
|
||||
SUBROUTINE h5tis_variable_str_f(type_id, status, hdferr)
|
||||
IMPLICIT NONE
|
||||
INTEGER(HID_T), INTENT(IN) :: type_id ! Datatype identifier
|
||||
LOGICAL, INTENT(OUT) :: status ! Logical flag:
|
||||
! .TRUE. is datatype is a varibale string
|
||||
! .FALSE. otherwise
|
||||
INTEGER, INTENT(OUT) :: hdferr ! Error code
|
||||
|
||||
END SUBROUTINE h5tis_variable_str_f
|
||||
</pre>
|
||||
|
||||
|
||||
<p>
|
||||
<p>
|
||||
<hr>
|
||||
@ -1276,12 +1300,6 @@ FORTRAN Datatype API -- h5t
|
||||
</pre>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</dl>
|
||||
|
||||
<p>
|
||||
@ -1295,7 +1313,7 @@ FORTRAN Datatype API -- h5t
|
||||
Describes HDF5 Release 1.5, Unreleased Development Branch
|
||||
</address><!-- #EndLibraryItem -->
|
||||
|
||||
Last modified: 14 March 2003
|
||||
Last modified: 19 March 2003
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
85
doc/html/fortran/h5z_FORTRAN.html
Normal file
85
doc/html/fortran/h5z_FORTRAN.html
Normal file
@ -0,0 +1,85 @@
|
||||
<html>
|
||||
<head><title>
|
||||
FORTRAN Identifier API -- h5i
|
||||
</title></head>
|
||||
|
||||
<body bgcolor="#FFFFFF">
|
||||
|
||||
|
||||
|
||||
<center>
|
||||
<h1>The FORTRAN 90 API to HDF5<br>h5i: Filters</h1>
|
||||
</center>
|
||||
|
||||
|
||||
<dl>
|
||||
|
||||
|
||||
<p>
|
||||
<p>
|
||||
<hr>
|
||||
<p>
|
||||
<a name="h5zunregister_f">
|
||||
<p>
|
||||
</a>
|
||||
|
||||
|
||||
<dt><strong>FORTRAN interface:</strong>   <strong>h5zunregister_f</strong>
|
||||
|
||||
<pre>
|
||||
SUBROUTINE h5zunregister_f(filter, hdferr)
|
||||
IMPLICIT NONE
|
||||
INTEGER, INTENT(IN) :: filter ! Filter; one of the possible values:
|
||||
! H5Z_FILTER_DEFLATE_F
|
||||
! H5Z_FILTER_SHUFFLE_F
|
||||
! H5Z_FILTER_FLETCHER32_F
|
||||
INTEGER, INTENT(OUT) :: hdferr ! Error code
|
||||
! 0 on success, and -1 on failure
|
||||
|
||||
END SUBROUTINE h5zunregister_f
|
||||
</pre>
|
||||
|
||||
|
||||
<p>
|
||||
<p>
|
||||
<hr>
|
||||
<p>
|
||||
<a name="h5zfilter_avail_f">
|
||||
<p>
|
||||
</a>
|
||||
|
||||
|
||||
<dt><strong>FORTRAN interface:</strong>   <strong>h5zfilter_avail_f</strong>
|
||||
|
||||
<pre>
|
||||
SUBROUTINE h5zfilter_avail_f(filter, status, hdferr)
|
||||
IMPLICIT NONE
|
||||
INTEGER, INTENT(IN) :: filter ! Filter; one of the possible values:
|
||||
! H5Z_FILTER_DEFLATE_F
|
||||
! H5Z_FILTER_SHUFFLE_F
|
||||
! H5Z_FILTER_FLETCHER32_F
|
||||
LOGICAL, INTENT(OUT) :: status ! Flag, idicates if filter
|
||||
! is availble ( .TRUE. or .FALSE.)
|
||||
|
||||
END SUBROUTINE h5zfilter_avail_f
|
||||
|
||||
</pre>
|
||||
|
||||
|
||||
</dl>
|
||||
|
||||
<p>
|
||||
<p>
|
||||
<hr>
|
||||
|
||||
|
||||
<!-- #BeginLibraryItem "/ed_libs/Footer.lbi" --><address>
|
||||
<a href="mailto:hdfhelp@ncsa.uiuc.edu">HDF Help Desk</a>
|
||||
<br>
|
||||
Describes HDF5 Release 1.5, Unreleased Development Branch
|
||||
</address><!-- #EndLibraryItem -->
|
||||
|
||||
Last modified: 19 March 2003
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user