Skip to content

Commit

Permalink
Removed source code associated with variants of HDF5 1.13 (#45)
Browse files Browse the repository at this point in the history
* Removed HDF 1.13.x related code, as the minimum requirement is 1.14
  • Loading branch information
brtnfld authored Nov 18, 2024
1 parent fbd401c commit 92c22f3
Show file tree
Hide file tree
Showing 4 changed files with 476 additions and 1,283 deletions.
2 changes: 1 addition & 1 deletion docs/source/example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ The H5ESwait is also required before closing an event set, with:
HDF5 Asynchronous I/O API
-------------------------
The HDF5-1.13 and later versions provide an asynchronous version of all the HDF5 I/O operations. A complete list of them can be found in the API section. Applications need to switch their existing HDF5 function calls to their asynchronous version, which can be done by adding "_async" to the end of the HDF5 function name and adding an event set ID as the last parameter to the function parameter list. One can also maintain both the original synchronous calls and asynchronous with a MACRO and decides which to use at compile time, e.g.,:
The HDF5-1.14 and later versions provide an asynchronous version of all the HDF5 I/O operations. A complete list of them can be found in the API section. Applications need to switch their existing HDF5 function calls to their asynchronous version, which can be done by adding "_async" to the end of the HDF5 function name and adding an event set ID as the last parameter to the function parameter list. One can also maintain both the original synchronous calls and asynchronous with a MACRO and decides which to use at compile time, e.g.,:

.. code-block::
Expand Down
2 changes: 1 addition & 1 deletion docs/source/hdf5api.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
HDF5 Async APIs
===============
HDF5-1.13 and later versions added a number of new APIs that allow applications to take advantage of the asynchronous I/O feature provided by the asynchronous I/O VOL connector. They are part of the HDF5 public header, so users only need to include the HDF5 header file (hdf5.h) to use them.
HDF5-1.14 and later versions added a number of new APIs that allow applications to take advantage of the asynchronous I/O feature provided by the asynchronous I/O VOL connector. They are part of the HDF5 public header, so users only need to include the HDF5 header file (hdf5.h) to use them.

EventSet APIs
-------------
Expand Down
Loading

0 comments on commit 92c22f3

Please sign in to comment.