diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1999-05-25 21:29:31 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1999-05-25 21:29:31 (GMT) |
commit | ac830927fbda984086d7bd601282c5f3e5478176 (patch) | |
tree | d516c754a10ce7824f141e1bc82280977fab24f4 /src/H5D.c | |
parent | 9282a3e3575d7e3af855bea6ddd4d1a0ba511671 (diff) | |
download | hdf5-ac830927fbda984086d7bd601282c5f3e5478176.zip hdf5-ac830927fbda984086d7bd601282c5f3e5478176.tar.gz hdf5-ac830927fbda984086d7bd601282c5f3e5478176.tar.bz2 |
[svn-r1277] Added additional checks into the dataspace code to determine if the hyperslabs
being written out are contiguous in memory and on disk and write/read them as
one I/O operation (if the datatypes don't require conversion). This should be
a good performance boost for those situations. It's especially needed on the
ASCI Red (TFlops) machine. - QAK (from Albert's account on modi4 :-)
Diffstat (limited to 'src/H5D.c')
-rw-r--r-- | src/H5D.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1905,7 +1905,7 @@ H5D_write(H5D_t *dataset, const H5T_t *mem_type, const H5S_t *mem_space, } } #ifdef QAK - printf("%s: after H5T_find, tconv_func=%p\n",FUNC,tconv_func); + printf("%s: after H5T_find, tpath=%p\n",FUNC,tpath); #endif /* QAK */ if (NULL==(sconv=H5S_find(mem_space, file_space))) { HGOTO_ERROR (H5E_DATASET, H5E_UNSUPPORTED, FAIL, |