diff options
author | Jordan Henderson <jhenderson@hdfgroup.org> | 2017-04-09 21:57:02 (GMT) |
---|---|---|
committer | Jordan Henderson <jhenderson@hdfgroup.org> | 2017-04-09 21:57:02 (GMT) |
commit | b314f57e23ea25b82bebe4f514f14f878436c36f (patch) | |
tree | 972a560f964fe006ec32d9f2bf0a049284fe4598 | |
parent | 8a454e941c2c5b9e5d6a4af6f5464d32018cdd90 (diff) | |
download | hdf5-b314f57e23ea25b82bebe4f514f14f878436c36f.zip hdf5-b314f57e23ea25b82bebe4f514f14f878436c36f.tar.gz hdf5-b314f57e23ea25b82bebe4f514f14f878436c36f.tar.bz2 |
In current implementation, list must be gathered to all
-rw-r--r-- | src/H5Dmpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dmpio.c b/src/H5Dmpio.c index 287ac25..7dee025 100644 --- a/src/H5Dmpio.c +++ b/src/H5Dmpio.c @@ -2637,7 +2637,7 @@ H5D__construct_filtered_io_info_list(const H5D_io_info_t *io_info, const H5D_typ if (H5D__mpio_array_gatherv(local_info_array, num_chunks_selected, sizeof(*local_info_array), (void **) &shared_chunks_info_array, &shared_chunks_info_array_num_entries, mpi_size, - false, 0, io_info->comm, H5D__cmp_filtered_collective_io_info_entry) < 0) + true, 0, io_info->comm, H5D__cmp_filtered_collective_io_info_entry) < 0) HGOTO_ERROR(H5E_DATASET, H5E_CANTGATHER, FAIL, "couldn't gather array") for (i = 0, num_chunks_selected = 0, num_send_requests = 0; i < shared_chunks_info_array_num_entries;) { |