mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r5740] Purpose:
Bug fix. Description: 1-D non-contiguous hyperslabs were erroneously being detected as contiguous and were causing incorrect behavior for parallel I/O benchmark (and parallel programs in general). Solution: Modified algorithm to handle 1-D case correctly. Platforms tested: IRIX64 6.5 (modi4)
This commit is contained in:
parent
3b3d15822a
commit
eb45c3c8a4
@ -5590,8 +5590,12 @@ H5S_hyper_select_contiguous(const H5S_t *space)
|
||||
small_contiguous=FALSE; /* assume false initially */
|
||||
|
||||
/* Check for a "large contigous" block */
|
||||
for(u=1; u<space->extent.u.simple.rank; u++) {
|
||||
if(space->select.sel_info.hslab.diminfo[u].count>1 || space->select.sel_info.hslab.diminfo[u].block!=space->extent.u.simple.size[u]) {
|
||||
for(u=0; u<space->extent.u.simple.rank; u++) {
|
||||
if(space->select.sel_info.hslab.diminfo[u].count>1) {
|
||||
large_contiguous=FALSE;
|
||||
break;
|
||||
} /* end if */
|
||||
if(u>0 && space->select.sel_info.hslab.diminfo[u].block!=space->extent.u.simple.size[u]) {
|
||||
large_contiguous=FALSE;
|
||||
break;
|
||||
} /* end if */
|
||||
|
Loading…
x
Reference in New Issue
Block a user