summaryrefslogtreecommitdiffstats
path: root/src/H5D.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-06-18 14:04:19 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-06-18 14:04:19 (GMT)
commit474070b634ed3a66d3a015e5d884c77bc0870d5e (patch)
tree68ae755f91c709606a0dad20120cec64055794b7 /src/H5D.c
parent2b1c0b6ccda60ce690c0bef8e11f068a9448a18a (diff)
downloadhdf5-474070b634ed3a66d3a015e5d884c77bc0870d5e.zip
hdf5-474070b634ed3a66d3a015e5d884c77bc0870d5e.tar.gz
hdf5-474070b634ed3a66d3a015e5d884c77bc0870d5e.tar.bz2
[svn-r5661] Purpose:
Code optimization Description: Avoid creating MPI types (and thus requiring a MPI_File_set_view() call) when contiguous selections are used for dataset I/O. This should be a performance improvement for those sorts of selections. Platforms tested: Linux 2.2.x (eirene) w/parallel && IRIX64 6.5 (modi4) w/parallel & FORTRAN
Diffstat (limited to 'src/H5D.c')
-rw-r--r--src/H5D.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5D.c b/src/H5D.c
index 763f520..017bd54 100644
--- a/src/H5D.c
+++ b/src/H5D.c
@@ -99,7 +99,7 @@ H5D_xfer_t H5D_xfer_dflt = {
/*transaction */
#endif
#ifdef H5_HAVE_PARALLEL
- 0, /* Whether to use types for this I/O */
+ 0, /* Whether to use a view for this I/O */
MPI_DATATYPE_NULL, /* MPI type for buffer (memory) */
MPI_DATATYPE_NULL, /* MPI type for file */
#endif /* H5_HAVE_PARALLEL */