summaryrefslogtreecommitdiffstats
path: root/perform/pio_engine.c
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2002-05-21 18:49:44 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2002-05-21 18:49:44 (GMT)
commitc365ae137377312931605095a53f964410d47f61 (patch)
treef5804ede4d66c5f25caf22062715a7ba3c0e2994 /perform/pio_engine.c
parent03ab48c9c306fee878c4f3a97f858f90c078bfdf (diff)
downloadhdf5-c365ae137377312931605095a53f964410d47f61.zip
hdf5-c365ae137377312931605095a53f964410d47f61.tar.gz
hdf5-c365ae137377312931605095a53f964410d47f61.tar.bz2
[svn-r5446] Purpose:
Feature Description: moved the routines of setting up and dumping MPI-info object to test library so that it is avaiable for all tests too. Platforms tested: modi4(pp), eirene (serial)
Diffstat (limited to 'perform/pio_engine.c')
-rw-r--r--perform/pio_engine.c17
1 files changed, 1 insertions, 16 deletions
diff --git a/perform/pio_engine.c b/perform/pio_engine.c
index bf2d30c..3c6adf0 100644
--- a/perform/pio_engine.c
+++ b/perform/pio_engine.c
@@ -146,21 +146,7 @@ do_pio(parameters param)
/* debug */
if (pio_debug_level>=4) {
- if (pio_info_g==MPI_INFO_NULL){
- printf("INFO object is MPI_INFO_NULL\n");
- }
- else {
- char value[128];
- int flag;
- MPI_Info_get(pio_info_g, "IBM_largeblock_io", 127, value, &flag);
- printf("after MPI_Info_get, flag=%d\n", flag);
- if (flag){
- printf("found IBM_largeblock_io=%s, in info object\n", value);
- }else{
- printf("could not find IBM_largeblock_io in info object\n");
- }
-
- }
+ h5_dump_info_object(pio_info_g);
}
/* IO type */
@@ -1103,7 +1089,6 @@ do_cleanupfile(iotype iot, char *fname)
}
}
-
#ifndef TIME_MPI
#define TIME_MPI
#endif