[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:
Quincey Koziol 2002-07-01 16:32:13 -05:00
parent 3b3d15822a
commit eb45c3c8a4

View File

@ -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 */