summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2014-06-27 15:52:58 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2014-06-27 15:52:58 (GMT)
commitd2313249ca4245b702d1bf7ccae28f758afcc5fe (patch)
tree8a1f836f05295ad9c98da10a5229ac973e203c74
parent645c4bcc7b467f338ca6711acfb9d41c12c05b5d (diff)
downloadhdf5-d2313249ca4245b702d1bf7ccae28f758afcc5fe.zip
hdf5-d2313249ca4245b702d1bf7ccae28f758afcc5fe.tar.gz
hdf5-d2313249ca4245b702d1bf7ccae28f758afcc5fe.tar.bz2
[svn-r25367] minor edits..
-rw-r--r--src/H5VLiod_dset.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/H5VLiod_dset.c b/src/H5VLiod_dset.c
index 990b12a..1c47a03 100644
--- a/src/H5VLiod_dset.c
+++ b/src/H5VLiod_dset.c
@@ -1580,6 +1580,11 @@ H5VL__iod_server_final_io(iod_handle_t coh, iod_handle_t iod_oh, hid_t space_id,
buf_ptr += num_bytes;
}
+#if 0
+ {
+ double t1, t2;
+ t1 = MPI_Wtime();
+#endif
if(write_op) {
/* write to array */
ret = iod_array_write_list(coh, tid, num_descriptors, array_io, NULL);
@@ -1592,6 +1597,11 @@ H5VL__iod_server_final_io(iod_handle_t coh, iod_handle_t iod_oh, hid_t space_id,
if(ret < 0)
HGOTO_ERROR_FF(ret, "can't read from array object");
}
+#if 0
+ t2 = MPI_Wtime();
+ fprintf(stderr, "%d: IOD ARRAY IO time: %1.7f\n", my_rank_g, t2-t1);
+ }
+#endif
/* If this is a read operation, compute checksum for each IOD
read, and compare it against checksum returned from IOD */