summaryrefslogtreecommitdiffstats
path: root/src/H5Olayout.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-05-01 03:29:00 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-05-01 03:29:00 (GMT)
commit4f0b880861c6d719ef30302ebc522abdaf84b292 (patch)
tree15cd04cb350ccb916cd393dd2d19c54ab6997b77 /src/H5Olayout.c
parenta4281bd2f22a871fb9a5f7d5b0180f19efc3c73d (diff)
downloadhdf5-4f0b880861c6d719ef30302ebc522abdaf84b292.zip
hdf5-4f0b880861c6d719ef30302ebc522abdaf84b292.tar.gz
hdf5-4f0b880861c6d719ef30302ebc522abdaf84b292.tar.bz2
[svn-r8456] Purpose:
Code optimization Description: Eliminate more 64-bit multiplies by remebering the size of contiguous datasets as well as chunked datasets. Platforms tested: Solaris 2.7 (arabica) FreeBSD 4.9 (sleipnir) too minor to require h5committest
Diffstat (limited to 'src/H5Olayout.c')
-rw-r--r--src/H5Olayout.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Olayout.c b/src/H5Olayout.c
index 9e92c3f..5dca442 100644
--- a/src/H5Olayout.c
+++ b/src/H5Olayout.c
@@ -147,9 +147,9 @@ H5O_layout_decode(H5F_t *f, hid_t UNUSED dxpl_id, const uint8_t *p, H5O_shared_t
p += mesg->size;
}
}
- else if(mesg->type == H5D_CHUNKED) {
+ else if(mesg->type == H5D_CHUNKED || mesg->type == H5D_CONTIGUOUS) {
/* Compute chunk size */
- for (u=0, mesg->chunk_size=1; u<mesg->ndims; u++)
+ for (u=1, mesg->chunk_size=mesg->dim[0]; u<mesg->ndims; u++)
mesg->chunk_size *= mesg->dim[u];
} /* end if */