diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-09-13 23:49:54 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-09-13 23:49:54 (GMT) |
commit | 85a08f5bc9c76b5a28897743046e548742bc963e (patch) | |
tree | 5b0347739d1bbd8088b0981cdaf2070d699aabb4 /src/H5Sselect.c | |
parent | 6a3bebec596de6e662b9b3e0507e641880a077c0 (diff) | |
download | hdf5-85a08f5bc9c76b5a28897743046e548742bc963e.zip hdf5-85a08f5bc9c76b5a28897743046e548742bc963e.tar.gz hdf5-85a08f5bc9c76b5a28897743046e548742bc963e.tar.bz2 |
[svn-r2546] Further patches to accomodate regular hyperslabs. More of the tests are
passing, but not all of them yet...
Diffstat (limited to 'src/H5Sselect.c')
-rw-r--r-- | src/H5Sselect.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/H5Sselect.c b/src/H5Sselect.c index 08f3752..fc931e1 100644 --- a/src/H5Sselect.c +++ b/src/H5Sselect.c @@ -598,6 +598,14 @@ H5S_get_select_hyper_nblocks(H5S_t *space) /* Check for a "regular" hyperslab selection */ if(space->select.sel_info.hslab.diminfo != NULL) { + +#ifdef QAK +{ +H5S_hyper_dim_t *diminfo=space->select.sel_info.hslab.diminfo; +for(i=0; i<space->extent.u.simple.rank; i++) + printf("%s: (%d) start=%d, stride=%d, count=%d, block=%d\n",FUNC,i,(int)diminfo[i].start,(int)diminfo[i].stride,(int)diminfo[i].count,(int)diminfo[i].block); +} +#endif /*QAK */ /* Check each dimension */ for(ret_value=1,i=0; i<space->extent.u.simple.rank; i++) ret_value*=space->select.sel_info.hslab.diminfo[i].count; |