- H5PartSetNumPoints() renamed to H5PartSetNumItems()
- H5PartGetNumPoints() renamed to H5PartGetNumItems()
- Dataset names longer then 64 bytes are handled as error.
- Same for step/iteration names.
* core API
- we use the term 'iteration' instead of 'step'
- we use the term 'item' instead of 'point'
- re-factor function and variable names
- in printing messages/debug output fixed
- do not flush (sync to disk) after writing a dataset by default,
  can be controlled by a property
This commit is contained in:
Gsell Achim
2018-09-14 16:46:40 +02:00
parent 072a2781fc
commit 4daf9b786c
47 changed files with 842 additions and 655 deletions
+10 -9
View File
@@ -56,9 +56,10 @@ extern "C" {
const h5_int32_t* buffer
)
Write a 3-dimensional field with scalar values to the current step
using the previously defined field view. Ensure that the size of
the buffer matches the number of elements in the view.
Write a 3-dimensional field with scalar values to the current
step/iteration using the previously defined field view. Ensure
that the size of the buffer matches the number of elements in
the view.
Supported data types are
@@ -176,8 +177,8 @@ H5Block3dWriteScalarFieldInt32 (
h5_int32_t* buffer
)
Read a 3-dimensional field with scalar values from the current step
using the previously defined field layout.
Read a 3-dimensional field with scalar values from the current
step/iteration using the previously defined field layout.
Ensure that the size of the buffer matches the number of elements in
the view.
@@ -295,9 +296,9 @@ H5Block3dReadScalarFieldInt32 (
)
Write a 3-dimensional field with 3-dimensional vectors as values to
the current step using the previously defined field view. Ensure
that the size of the buffer matches the number of elements in the
view.
the current step/iteration using the previously defined field view.
Ensure that the size of the buffer matches the number of elements in
the view.
Supported data types are
@@ -439,7 +440,7 @@ H5Block3dWriteVector3dFieldInt32 (
)
Read a 3-dimensional field with 3-dimensional vectors as values from
the current step using the previously defined field layout.
the current step/iteration using the previously defined field layout.
Ensure that the size of the buffer matches the number of elements in
the view.