diff options
author | Kimmy Mu <kmu@hdfgroup.org> | 2020-01-28 19:28:26 (GMT) |
---|---|---|
committer | kmu <kmu@hdfgroup.org> | 2020-01-28 22:01:12 (GMT) |
commit | f1cc5cfd7e7a898da0764392d0df8f10a02f205d (patch) | |
tree | 0c8fe469ce5aca2566ba89ab5e5d0e1fb1a4f2c9 /testpar | |
parent | d4dedac70f84be791869e37d28aef73f3d72c1e4 (diff) | |
download | hdf5-f1cc5cfd7e7a898da0764392d0df8f10a02f205d.zip hdf5-f1cc5cfd7e7a898da0764392d0df8f10a02f205d.tar.gz hdf5-f1cc5cfd7e7a898da0764392d0df8f10a02f205d.tar.bz2 |
Merge pull request #2311 in HDFFV/hdf5 from ~KMU/hdf5:misc to develop
* commit '406330addf45529ecdd088f4d22e9aab9a03661d':
rename macro
change condition
pick up from Dave's fix
leave Wswitch-default for later fix
fix Wredundant-decls, Wswitch-default, Wdeclaration-after-statement, Wsign-compare, Wmisleading-indentation, Wshadow
Diffstat (limited to 'testpar')
-rw-r--r-- | testpar/t_2Gio.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testpar/t_2Gio.c b/testpar/t_2Gio.c index 6939585..e955269 100644 --- a/testpar/t_2Gio.c +++ b/testpar/t_2Gio.c @@ -539,6 +539,9 @@ static int MpioTest2G( MPI_Comm comm, int mpi_rank ) hid_t filespace; /* file and memory dataspace identifiers */ int *data; /* pointer to data buffer to write */ + hsize_t chunk[3]; + hsize_t h5_counts[3]; + hsize_t h5_offsets[3]; hsize_t shape[3] = {1024, 1024, 1152}; size_t data_size, data_size_bytes, slice_per_process = shape[0]/2; size_t tot_size_bytes = sizeof(int); |