diff options
author | Richard Warren <Richard.Warren@hdfgroup.org> | 2019-10-25 16:39:10 (GMT) |
---|---|---|
committer | Richard Warren <Richard.Warren@hdfgroup.org> | 2019-10-25 16:39:10 (GMT) |
commit | afd4b291315e39e3966eadaf8ae9894b30e9504e (patch) | |
tree | 4745315959ca6363b8e4e97331f982b49a0cee35 /testpar | |
parent | 73e8b16d922b3f9d16ebf85e50c4c011612c33b2 (diff) | |
parent | 299c9ed5fe19edac37cab27bc04d587fa67568c2 (diff) | |
download | hdf5-afd4b291315e39e3966eadaf8ae9894b30e9504e.zip hdf5-afd4b291315e39e3966eadaf8ae9894b30e9504e.tar.gz hdf5-afd4b291315e39e3966eadaf8ae9894b30e9504e.tar.bz2 |
Merge pull request #2015 in HDFFV/hdf5 from HDFFV-10943 to develop
* commit '299c9ed5fe19edac37cab27bc04d587fa67568c2':
Removed set_bigio_count prototype since it has been added to H5private.h
Change API names for get/set bitio_count. Also added H5_mpi_set_bigio_count to H5private.h.
Diffstat (limited to 'testpar')
-rw-r--r-- | testpar/t_bigio.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/testpar/t_bigio.c b/testpar/t_bigio.c index fe96c83..12c1023 100644 --- a/testpar/t_bigio.c +++ b/testpar/t_bigio.c @@ -53,8 +53,6 @@ static void coll_chunktest(const char* filename, int chunk_factor, int select_fa int api_option, int file_selection, int mem_selection, int mode); hid_t create_faccess_plist(MPI_Comm comm, MPI_Info info, int l_facc_type); -hsize_t H5_mpio_set_bigio_count(hsize_t new_count); - /* * Setup the coordinates for point selection. */ @@ -1928,7 +1926,7 @@ int main(int argc, char **argv) int ExpressMode = 0; hsize_t newsize = 1048576; /* Set the bigio processing limit to be 'newsize' bytes */ - hsize_t oldsize = H5_mpio_set_bigio_count(newsize); + hsize_t oldsize = H5_mpi_set_bigio_count(newsize); /* Having set the bigio handling to a size that is managable, * we'll set our 'bigcount' variable to be 2X that limit so |