summaryrefslogtreecommitdiffstats
path: root/src/H5Smpio.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5Smpio.c')
-rw-r--r--src/H5Smpio.c52
1 files changed, 26 insertions, 26 deletions
diff --git a/src/H5Smpio.c b/src/H5Smpio.c
index c1465d0..f0f55c4 100644
--- a/src/H5Smpio.c
+++ b/src/H5Smpio.c
@@ -126,7 +126,7 @@ H5S__mpio_all_type(const H5S_t *space, size_t elmt_size, MPI_Datatype *new_type,
FUNC_ENTER_PACKAGE
/* Check args */
- HDassert(space);
+ assert(space);
/* Just treat the entire extent as a block of bytes */
if ((snelmts = (hssize_t)H5S_GET_EXTENT_NPOINTS(space)) < 0)
@@ -380,7 +380,7 @@ H5S__mpio_point_type(const H5S_t *space, size_t elmt_size, MPI_Datatype *new_typ
FUNC_ENTER_PACKAGE
/* Check args */
- HDassert(space);
+ assert(space);
/* Get the total number of points selected */
if ((snum_points = (hssize_t)H5S_GET_SELECT_NPOINTS(space)) < 0)
@@ -520,7 +520,7 @@ H5S__mpio_permute_type(H5S_t *space, size_t elmt_size, hsize_t **permute, MPI_Da
FUNC_ENTER_PACKAGE
/* Check args */
- HDassert(space);
+ assert(space);
/* Get the total number of points selected */
if ((snum_points = (hssize_t)H5S_GET_SELECT_NPOINTS(space)) < 0)
@@ -681,8 +681,8 @@ H5S__mpio_reg_hyper_type(H5S_t *space, size_t elmt_size, MPI_Datatype *new_type,
FUNC_ENTER_PACKAGE
/* Check args */
- HDassert(space);
- HDassert(sizeof(MPI_Aint) >= sizeof(elmt_size));
+ assert(space);
+ assert(sizeof(MPI_Aint) >= sizeof(elmt_size));
bigio_count = H5_mpi_get_bigio_count();
@@ -697,7 +697,7 @@ H5S__mpio_reg_hyper_type(H5S_t *space, size_t elmt_size, MPI_Datatype *new_type,
/* Abbreviate args */
diminfo = sel_iter->u.hyp.diminfo;
- HDassert(diminfo);
+ assert(diminfo);
/* Make a local copy of the dimension info so we can operate with them */
@@ -731,9 +731,9 @@ H5S__mpio_reg_hyper_type(H5S_t *space, size_t elmt_size, MPI_Datatype *new_type,
#endif
/* Sanity check */
- HDassert(d[u].block > 0);
- HDassert(d[u].count > 0);
- HDassert(d[u].xtent > 0);
+ assert(d[u].block > 0);
+ assert(d[u].count > 0);
+ assert(d[u].xtent > 0);
} /* end for */
} /* end if */
else {
@@ -765,9 +765,9 @@ H5S__mpio_reg_hyper_type(H5S_t *space, size_t elmt_size, MPI_Datatype *new_type,
#endif
/* Sanity check */
- HDassert(d[u].block > 0);
- HDassert(d[u].count > 0);
- HDassert(d[u].xtent > 0);
+ assert(d[u].block > 0);
+ assert(d[u].count > 0);
+ assert(d[u].xtent > 0);
} /* end for */
} /* end else */
@@ -943,7 +943,7 @@ H5S__mpio_reg_hyper_type(H5S_t *space, size_t elmt_size, MPI_Datatype *new_type,
MPI_Datatype interm_type;
int block_len = 1;
- HDassert(0 == lb);
+ assert(0 == lb);
mpi_code = MPI_Type_create_hindexed(1, &block_len, &start_disp, outer_type, &interm_type);
MPI_Type_free(&outer_type);
@@ -1021,10 +1021,10 @@ H5S__mpio_span_hyper_type(const H5S_t *space, size_t elmt_size, MPI_Datatype *ne
FUNC_ENTER_PACKAGE
/* Check args */
- HDassert(space);
- HDassert(space->extent.size);
- HDassert(space->select.sel_info.hslab->span_lst);
- HDassert(space->select.sel_info.hslab->span_lst->head);
+ assert(space);
+ assert(space->extent.size);
+ assert(space->select.sel_info.hslab->span_lst);
+ assert(space->select.sel_info.hslab->span_lst->head);
bigio_count = H5_mpi_get_bigio_count();
/* Create the base type for an element */
@@ -1092,7 +1092,7 @@ H5S__release_datatype(H5S_mpio_mpitype_list_t *type_list)
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(type_list);
+ assert(type_list);
/* Iterate over the list, freeing the MPI data types */
curr = type_list->head;
@@ -1151,8 +1151,8 @@ H5S__obtain_datatype(H5S_hyper_span_info_t *spans, const hsize_t *down, size_t e
FUNC_ENTER_PACKAGE
/* Sanity check */
- HDassert(spans);
- HDassert(type_list);
+ assert(spans);
+ assert(type_list);
bigio_count = H5_mpi_get_bigio_count();
/* Check if we've visited this span tree before */
@@ -1396,8 +1396,8 @@ H5S_mpio_space_type(H5S_t *space, size_t elmt_size, MPI_Datatype *new_type, int
FUNC_ENTER_NOAPI_NOINIT
/* Check args */
- HDassert(space);
- HDassert(elmt_size);
+ assert(space);
+ assert(elmt_size);
/* Create MPI type based on the kind of selection */
switch (H5S_GET_EXTENT_TYPE(space)) {
@@ -1420,7 +1420,7 @@ H5S_mpio_space_type(H5S_t *space, size_t elmt_size, MPI_Datatype *new_type, int
case H5S_SEL_POINTS:
case H5S_SEL_HYPERSLABS:
/* Sanity check */
- HDassert(!do_permute);
+ assert(!do_permute);
if (H5S__mpio_permute_type(space, elmt_size, permute_map, new_type, count,
is_derived_type) < 0)
@@ -1431,7 +1431,7 @@ H5S_mpio_space_type(H5S_t *space, size_t elmt_size, MPI_Datatype *new_type, int
case H5S_SEL_ERROR:
case H5S_SEL_N:
default:
- HDassert("unknown selection type" && 0);
+ assert("unknown selection type" && 0);
break;
} /* end switch */
} /* end if */
@@ -1473,7 +1473,7 @@ H5S_mpio_space_type(H5S_t *space, size_t elmt_size, MPI_Datatype *new_type, int
case H5S_SEL_ERROR:
case H5S_SEL_N:
default:
- HDassert("unknown selection type" && 0);
+ assert("unknown selection type" && 0);
break;
} /* end switch */
} /* end else */
@@ -1481,7 +1481,7 @@ H5S_mpio_space_type(H5S_t *space, size_t elmt_size, MPI_Datatype *new_type, int
case H5S_NO_CLASS:
default:
- HDassert("unknown dataspace type" && 0);
+ assert("unknown dataspace type" && 0);
break;
} /* end switch */