Skip to content

Commit

Permalink
Committing clang-format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 3, 2023
1 parent 0add906 commit 1fb9128
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/H5Dmpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -398,15 +398,16 @@ static herr_t H5D__mpio_share_chunk_modification_data(H5D_filtered_collective_io
unsigned char ***chunk_msg_bufs,
int *chunk_msg_bufs_len);
static herr_t H5D__mpio_collective_filtered_chunk_read(H5D_filtered_collective_io_info_t *chunk_list,
const H5D_io_info_t *io_info,
size_t num_dset_infos, int mpi_rank);
const H5D_io_info_t *io_info, size_t num_dset_infos,
int mpi_rank);
static herr_t H5D__mpio_collective_filtered_chunk_update(H5D_filtered_collective_io_info_t *chunk_list,
unsigned char **chunk_msg_bufs,
int chunk_msg_bufs_len, const H5D_io_info_t *io_info,
size_t num_dset_infos, int mpi_rank);
static herr_t H5D__mpio_collective_filtered_chunk_reallocate(H5D_filtered_collective_io_info_t *chunk_list,
size_t *num_chunks_assigned_map, H5D_io_info_t *io_info,
size_t num_dset_infos, int mpi_rank, int mpi_size);
size_t *num_chunks_assigned_map,
H5D_io_info_t *io_info, size_t num_dset_infos,
int mpi_rank, int mpi_size);
static herr_t H5D__mpio_collective_filtered_chunk_reinsert(H5D_filtered_collective_io_info_t *chunk_list,
size_t *num_chunks_assigned_map,
H5D_io_info_t *io_info, size_t num_dset_infos,
Expand Down Expand Up @@ -2441,8 +2442,8 @@ H5D__multi_chunk_filtered_collective_io(H5D_io_info_t *io_info, H5D_dset_io_info
HGOTO_ERROR(H5E_DATASET, H5E_WRITEERROR, FAIL, "couldn't update modified chunks");

/* All ranks now collectively re-allocate file space for all chunks */
if (H5D__mpio_collective_filtered_chunk_reallocate(&single_chunk_list, NULL, io_info, 1,
mpi_rank, mpi_size) < 0)
if (H5D__mpio_collective_filtered_chunk_reallocate(&single_chunk_list, NULL, io_info, 1, mpi_rank,
mpi_size) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_WRITEERROR, FAIL,
"couldn't collectively re-allocate file space for chunks");

Expand All @@ -2460,8 +2461,8 @@ H5D__multi_chunk_filtered_collective_io(H5D_io_info_t *io_info, H5D_dset_io_info
/* Participate in the collective re-insertion of all chunks modified
* in this iteration into the chunk index
*/
if (H5D__mpio_collective_filtered_chunk_reinsert(&single_chunk_list, NULL, io_info, 1,
mpi_rank, mpi_size) < 0)
if (H5D__mpio_collective_filtered_chunk_reinsert(&single_chunk_list, NULL, io_info, 1, mpi_rank,
mpi_size) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_WRITEERROR, FAIL,
"couldn't collectively re-insert modified chunks into chunk index");
} /* end for */
Expand Down Expand Up @@ -4680,8 +4681,7 @@ H5D__mpio_collective_filtered_chunk_read(H5D_filtered_collective_io_info_t *chun
static herr_t
H5D__mpio_collective_filtered_chunk_update(H5D_filtered_collective_io_info_t *chunk_list,
unsigned char **chunk_msg_bufs, int chunk_msg_bufs_len,
const H5D_io_info_t *io_info, size_t num_dset_infos,
int mpi_rank)
const H5D_io_info_t *io_info, size_t num_dset_infos, int mpi_rank)
{
H5S_sel_iter_t *sel_iter = NULL; /* Dataspace selection iterator for H5D__scatter_mem */
H5Z_EDC_t err_detect; /* Error detection info */
Expand Down

0 comments on commit 1fb9128

Please sign in to comment.