summaryrefslogtreecommitdiffstats
path: root/test/th5s.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-09-23 15:15:27 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-09-23 15:15:27 (GMT)
commit308982f2359c32277144636d1f62cf20af1b0972 (patch)
tree30a43192053616574992739debe9224e52bcb5d5 /test/th5s.c
parentd354e1f750f1e7f6938f4ba291954c129a577a7d (diff)
downloadhdf5-308982f2359c32277144636d1f62cf20af1b0972.zip
hdf5-308982f2359c32277144636d1f62cf20af1b0972.tar.gz
hdf5-308982f2359c32277144636d1f62cf20af1b0972.tar.bz2
[svn-r19473] Description:
Bring r19472 from trunk to the 1.8 branch: Create a new, more streamlined method of generating I/O sequences when there is only a single block defined by a hyperslab. This improves the performance of Ger Van Diepen's (LOFAR team) benchmark by about 20%. Tested on: FreeBSD/32 6.3 (duty) in debug mode (h5committested on trunk)
Diffstat (limited to 'test/th5s.c')
-rw-r--r--test/th5s.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/th5s.c b/test/th5s.c
index 5ff811b..3b37e78 100644
--- a/test/th5s.c
+++ b/test/th5s.c
@@ -1048,9 +1048,9 @@ test_h5s_chunk(void)
dsetID = H5Dopen2(fileID, "coords", H5P_DEFAULT);
CHECK(dsetID, FAIL, "H5Dopen2");
- status= H5Dread (dsetID, H5T_NATIVE_DOUBLE, H5S_ALL, H5S_ALL, H5P_DEFAULT, chunk_data_dbl);
+ status= H5Dread(dsetID, H5T_NATIVE_DOUBLE, H5S_ALL, H5S_ALL, H5P_DEFAULT, chunk_data_dbl);
CHECK(status, FAIL, "H5Dread");
- status= H5Dread (dsetID, H5T_NATIVE_FLOAT, H5S_ALL, H5S_ALL, H5P_DEFAULT, chunk_data_flt);
+ status= H5Dread(dsetID, H5T_NATIVE_FLOAT, H5S_ALL, H5S_ALL, H5P_DEFAULT, chunk_data_flt);
CHECK(status, FAIL, "H5Dread");
status = H5Dclose(dsetID);