summaryrefslogtreecommitdiffstats
path: root/examples/h5ff_client_dset.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2015-08-03 20:09:21 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2015-08-03 20:09:21 (GMT)
commit0360b7f343858c0126ae854cacf25d1318242755 (patch)
treef23ce75bf49fcef37cd00186e44f7bf15d33df33 /examples/h5ff_client_dset.c
parentf5aee089ed3cf48a3dd94088faf7e2a91b2588b5 (diff)
downloadhdf5-0360b7f343858c0126ae854cacf25d1318242755.zip
hdf5-0360b7f343858c0126ae854cacf25d1318242755.tar.gz
hdf5-0360b7f343858c0126ae854cacf25d1318242755.tar.bz2
[svn-r27454] more merge fixes.
things work now!
Diffstat (limited to 'examples/h5ff_client_dset.c')
-rw-r--r--examples/h5ff_client_dset.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/examples/h5ff_client_dset.c b/examples/h5ff_client_dset.c
index 4b59d9c..60daabc 100644
--- a/examples/h5ff_client_dset.c
+++ b/examples/h5ff_client_dset.c
@@ -166,9 +166,10 @@ int main(int argc, char **argv) {
assert(gid3 > 0);
dcpl_id = H5Pcreate (H5P_DATASET_CREATE);
- H5Pset_dcpl_dim_layout(dcpl_id, H5D_COL_MAJOR);
- H5Pset_dcpl_stripe_count(dcpl_id, 4);
- H5Pset_dcpl_stripe_size(dcpl_id, 5);
+ /* MSC - Was working in FF, but not working now. Seems like IOD regression bug. */
+ //H5Pset_dcpl_dim_layout(dcpl_id, H5D_COL_MAJOR);
+ //H5Pset_dcpl_stripe_count(dcpl_id, 4);
+ //H5Pset_dcpl_stripe_size(dcpl_id, 5);
/* create datasets */
did1 = H5Dcreate_ff(gid1, "D1", dtid, sid, H5P_DEFAULT, dcpl_id, H5P_DEFAULT, tid1, e_stack);