mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-30 15:32:37 +08:00
Merge branch 'develop' into feature/update_gcc_flags
This commit is contained in:
commit
3dcc89625c
@ -2806,8 +2806,9 @@ H5D__chunk_redistribute_shared_chunks(const H5D_io_info_t *io_info, const H5D_ty
|
||||
/* Sort the new list in order of previous owner so that each original owner of a chunk
|
||||
* entry gets that entry back, with the possibly newly-modified "new_owner" field
|
||||
*/
|
||||
HDqsort(shared_chunks_info_array, shared_chunks_info_array_num_entries,
|
||||
sizeof(H5D_filtered_collective_io_info_t), H5D__cmp_filtered_collective_io_info_entry_owner);
|
||||
if(shared_chunks_info_array_num_entries > 1)
|
||||
HDqsort(shared_chunks_info_array, shared_chunks_info_array_num_entries,
|
||||
sizeof(H5D_filtered_collective_io_info_t), H5D__cmp_filtered_collective_io_info_entry_owner);
|
||||
|
||||
send_displacements[0] = 0;
|
||||
for (i = 1; i < (size_t) mpi_size; i++)
|
||||
|
@ -3683,6 +3683,8 @@ test_read_filtered_dataset_point_selection(void)
|
||||
if (read_buf) HDfree(read_buf);
|
||||
if (correct_buf) HDfree(correct_buf);
|
||||
|
||||
HDfree(coords);
|
||||
|
||||
VRFY((H5Dclose(dset_id) >= 0), "Dataset close succeeded");
|
||||
VRFY((H5Sclose(filespace) >= 0), "File dataspace close succeeded");
|
||||
VRFY((H5Sclose(memspace) >= 0), "Memory dataspace close succeeded");
|
||||
@ -5791,6 +5793,9 @@ test_write_parallel_read_serial(void)
|
||||
|
||||
VRFY((H5Dclose(dset_id) >= 0), "Dataset close succeeded");
|
||||
VRFY((H5Fclose(file_id) >= 0), "File close succeeded");
|
||||
|
||||
HDfree(correct_buf);
|
||||
HDfree(read_buf);
|
||||
}
|
||||
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user