[svn-r5369] Purpose:

Code cleanup

Description:
    Remove incorrect MPI_Barrier() call in data I/O loop.

Platforms tested:
    IRIX64 6.5 (modi4)
This commit is contained in:
Quincey Koziol 2002-05-07 11:06:58 -05:00
parent 3984d62ca3
commit 470663aef6

View File

@ -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);