* H5Block: added attribute writing functions to code generator: still need to add reading functions

* H5MultiBlock: added halo exchange routine: still needs debugging
This commit is contained in:
Marc Howison
2009-07-02 16:46:07 +00:00
parent 3d4da8653a
commit 6d38bf442d
11 changed files with 752 additions and 50 deletions
+20
View File
@@ -16,4 +16,24 @@
H5PART_ERR_DECOMP, \
"Number of blocks does not equal number of procs" );
#define HANDLE_MPI_CREATE_TYPE_ERR \
(*_err_handler) ( \
_H5Part_get_funcname(), \
H5PART_ERR_MPI, \
"Cannot created strided vector MPI datatype." );
#define HANDLE_MPI_SENDRECV_ERR \
(*_err_handler) ( \
_H5Part_get_funcname(), \
H5PART_ERR_MPI, \
"Unable to perform point-to-point MPI send/receive." );
#define HANDLE_MPI_INT64_ERR \
(*_err_handler) ( \
_H5Part_get_funcname(), \
H5PART_ERR_MPI, \
"Integer overslow error! An offset/count/stride/etc. value " \
"passed to an MPI function exceeds the 32-bit limit imposed " \
"by the MPI standard." );
#endif