diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-05-07 16:06:58 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-05-07 16:06:58 (GMT) |
commit | 470663aef662d8ad39133754396278fbd3f1b691 (patch) | |
tree | 5be41390e6828783efbb56507770ae79405a8e1d | |
parent | 3984d62ca3f7043f428bf0b8e25695ef09482aa7 (diff) | |
download | hdf5-470663aef662d8ad39133754396278fbd3f1b691.zip hdf5-470663aef662d8ad39133754396278fbd3f1b691.tar.gz hdf5-470663aef662d8ad39133754396278fbd3f1b691.tar.bz2 |
[svn-r5369] Purpose:
Code cleanup
Description:
Remove incorrect MPI_Barrier() call in data I/O loop.
Platforms tested:
IRIX64 6.5 (modi4)
-rw-r--r-- | perform/pio_engine.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/perform/pio_engine.c b/perform/pio_engine.c index acc62ad..5f658ef 100644 --- a/perform/pio_engine.c +++ b/perform/pio_engine.c @@ -633,8 +633,6 @@ fprintf(stderr, "proc %d: writes %ld bytes at mpi-offset %ld\n", VRFY((hrc >= 0), "H5Sset_hyperslab"); } - MPI_Barrier(pio_comm_g); - /* set write time here */ hrc = H5Dwrite(h5ds_id, H5T_NATIVE_INT, h5mem_space_id, h5dset_space_id, H5P_DEFAULT, buffer); @@ -846,8 +844,6 @@ fprintf(stderr, "proc %d: read %ld bytes at mpi-offset %ld\n", VRFY((hrc >= 0), "H5Sset_hyperslab"); } - MPI_Barrier(pio_comm_g); - /* set read time here */ hrc = H5Dread(h5ds_id, H5T_NATIVE_INT, h5mem_space_id, h5dset_space_id, H5P_DEFAULT, buffer); |