2003-04-01 02:02:10 +08:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-07 22:56:24 +08:00
|
|
|
* Copyright by The HDF Group. *
|
2003-04-01 02:02:10 +08:00
|
|
|
* Copyright by the Board of Trustees of the University of Illinois. *
|
|
|
|
* All rights reserved. *
|
|
|
|
* *
|
|
|
|
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
|
|
|
* terms governing use, modification, and redistribution, is contained in *
|
|
|
|
* the files COPYING and Copyright.html. COPYING can be found at the root *
|
|
|
|
* of the source code distribution tree; Copyright.html can be found at the *
|
|
|
|
* root level of an installed copy of the electronic HDF5 document set and *
|
|
|
|
* is linked from the top-level documents page. It can also be found at *
|
2007-02-07 22:56:24 +08:00
|
|
|
* http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have *
|
|
|
|
* access to either file, you may request a copy from help@hdfgroup.org. *
|
2003-04-01 02:02:10 +08:00
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
1998-02-17 05:06:48 +08:00
|
|
|
/*
|
1998-07-02 05:33:35 +08:00
|
|
|
* Main driver of the Parallel HDF5 tests
|
1998-02-17 05:06:48 +08:00
|
|
|
*/
|
1998-02-14 14:22:11 +08:00
|
|
|
|
2001-04-06 01:09:42 +08:00
|
|
|
#include "testphdf5.h"
|
1998-04-13 12:35:49 +08:00
|
|
|
|
2001-05-12 06:01:08 +08:00
|
|
|
#ifndef PATH_MAX
|
|
|
|
#define PATH_MAX 512
|
|
|
|
#endif /* !PATH_MAX */
|
2000-12-13 07:12:57 +08:00
|
|
|
|
1998-04-13 12:35:49 +08:00
|
|
|
/* global variables */
|
2009-04-10 05:32:52 +08:00
|
|
|
int dim0;
|
|
|
|
int dim1;
|
1999-07-03 08:27:36 +08:00
|
|
|
int chunkdim0;
|
|
|
|
int chunkdim1;
|
1998-07-06 06:58:37 +08:00
|
|
|
int nerrors = 0; /* errors count */
|
2001-06-21 04:11:11 +08:00
|
|
|
int ndatasets = 300; /* number of datasets to create*/
|
|
|
|
int ngroups = 512; /* number of groups to create in root
|
|
|
|
* group. */
|
2001-11-02 23:21:51 +08:00
|
|
|
int facc_type = FACC_MPIO; /*Test file access type */
|
2006-08-09 11:16:07 +08:00
|
|
|
int dxfer_coll_type = DXFER_COLLECTIVE_IO;
|
1998-08-04 04:22:23 +08:00
|
|
|
|
2007-08-22 05:47:41 +08:00
|
|
|
H5E_auto2_t old_func; /* previous error handler */
|
1998-07-06 06:58:37 +08:00
|
|
|
void *old_client_data; /* previous error handler arg.*/
|
1998-07-02 05:33:35 +08:00
|
|
|
|
|
|
|
/* other option flags */
|
2003-02-19 05:50:42 +08:00
|
|
|
|
2004-09-25 05:20:24 +08:00
|
|
|
/* FILENAME and filenames must have the same number of names.
|
|
|
|
* Use PARATESTFILE in general and use a separated filename only if the file
|
|
|
|
* created in one test is accessed by a different test.
|
2005-03-03 01:06:39 +08:00
|
|
|
* filenames[0] is reserved as the file name for PARATESTFILE.
|
2004-09-25 05:20:24 +08:00
|
|
|
*/
|
2005-03-03 01:06:39 +08:00
|
|
|
#define NFILENAME 2
|
2004-09-25 05:20:24 +08:00
|
|
|
#define PARATESTFILE filenames[0]
|
2005-03-03 01:06:39 +08:00
|
|
|
const char *FILENAME[NFILENAME]={
|
2004-09-25 05:20:24 +08:00
|
|
|
"ParaTest",
|
2000-01-26 12:33:38 +08:00
|
|
|
NULL};
|
2005-03-03 01:06:39 +08:00
|
|
|
char filenames[NFILENAME][PATH_MAX];
|
2000-10-20 14:19:21 +08:00
|
|
|
hid_t fapl; /* file access property list */
|
1999-04-27 12:12:18 +08:00
|
|
|
|
1998-04-13 12:35:49 +08:00
|
|
|
#ifdef USE_PAUSE
|
1998-03-31 01:03:46 +08:00
|
|
|
/* pause the process for a moment to allow debugger to attach if desired. */
|
|
|
|
/* Will pause more if greenlight file is not persent but will eventually */
|
|
|
|
/* continue. */
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
1999-12-18 02:54:52 +08:00
|
|
|
|
1999-12-20 22:53:44 +08:00
|
|
|
void pause_proc(void)
|
1998-03-31 01:03:46 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
int pid;
|
2002-04-23 04:24:59 +08:00
|
|
|
h5_stat_t statbuf;
|
1998-03-31 01:03:46 +08:00
|
|
|
char greenlight[] = "go";
|
|
|
|
int maxloop = 10;
|
1998-04-13 12:35:49 +08:00
|
|
|
int loops = 0;
|
1998-03-31 01:03:46 +08:00
|
|
|
int time_int = 10;
|
|
|
|
|
1998-07-02 05:33:35 +08:00
|
|
|
/* mpi variables */
|
|
|
|
int mpi_size, mpi_rank;
|
2005-08-14 04:53:35 +08:00
|
|
|
int mpi_namelen;
|
1998-07-02 05:33:35 +08:00
|
|
|
char mpi_name[MPI_MAX_PROCESSOR_NAME];
|
|
|
|
|
1998-03-31 01:03:46 +08:00
|
|
|
pid = getpid();
|
1998-07-02 05:33:35 +08:00
|
|
|
MPI_Comm_size(MPI_COMM_WORLD, &mpi_size);
|
|
|
|
MPI_Comm_rank(MPI_COMM_WORLD, &mpi_rank);
|
|
|
|
MPI_Get_processor_name(mpi_name, &mpi_namelen);
|
1998-03-31 01:03:46 +08:00
|
|
|
|
1998-07-02 05:33:35 +08:00
|
|
|
if (MAINPROCESS)
|
2011-08-30 23:35:30 +08:00
|
|
|
while ((HDstat(greenlight, &statbuf) == -1) && loops < maxloop){
|
1998-04-13 12:35:49 +08:00
|
|
|
if (!loops++){
|
1998-07-13 13:35:14 +08:00
|
|
|
printf("Proc %d (%*s, %d): to debug, attach %d\n",
|
1998-04-13 12:35:49 +08:00
|
|
|
mpi_rank, mpi_namelen, mpi_name, pid, pid);
|
|
|
|
}
|
|
|
|
printf("waiting(%ds) for file %s ...\n", time_int, greenlight);
|
1998-03-31 01:03:46 +08:00
|
|
|
fflush(stdout);
|
|
|
|
sleep(time_int);
|
|
|
|
}
|
1999-12-18 02:54:52 +08:00
|
|
|
MPI_Barrier(MPI_COMM_WORLD);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Use the Profile feature of MPI to call the pause_proc() */
|
|
|
|
int MPI_Init(int *argc, char ***argv)
|
|
|
|
{
|
|
|
|
int ret_code;
|
|
|
|
ret_code=PMPI_Init(argc, argv);
|
|
|
|
pause_proc();
|
|
|
|
return (ret_code);
|
1998-03-31 01:03:46 +08:00
|
|
|
}
|
1998-04-13 12:35:49 +08:00
|
|
|
#endif /* USE_PAUSE */
|
1998-03-31 01:03:46 +08:00
|
|
|
|
1998-03-11 14:13:01 +08:00
|
|
|
|
1998-04-13 12:35:49 +08:00
|
|
|
/*
|
|
|
|
* Show command usage
|
|
|
|
*/
|
2002-06-20 00:06:55 +08:00
|
|
|
static void
|
1999-04-27 12:12:18 +08:00
|
|
|
usage(void)
|
1998-02-14 14:22:11 +08:00
|
|
|
{
|
2004-08-24 08:08:29 +08:00
|
|
|
printf(" [-r] [-w] [-m<n_datasets>] [-n<n_groups>] "
|
2002-08-21 00:18:02 +08:00
|
|
|
"[-o] [-f <prefix>] [-d <dim0> <dim1>]\n");
|
2000-12-13 07:12:57 +08:00
|
|
|
printf("\t-m<n_datasets>"
|
|
|
|
"\tset number of datasets for the multiple dataset test\n");
|
2001-06-21 04:11:11 +08:00
|
|
|
printf("\t-n<n_groups>"
|
2005-08-14 04:53:35 +08:00
|
|
|
"\tset number of groups for the multiple group test\n");
|
1999-07-01 06:04:22 +08:00
|
|
|
printf("\t-f <prefix>\tfilename prefix\n");
|
2004-08-24 08:08:29 +08:00
|
|
|
printf("\t-2\t\tuse Split-file together with MPIO\n");
|
2002-07-15 23:21:44 +08:00
|
|
|
printf("\t-p\t\tuse combo MPI-POSIX driver\n");
|
2009-04-10 05:32:52 +08:00
|
|
|
printf("\t-d <factor0> <factor1>\tdataset dimensions factors. Defaults (%d,%d)\n",
|
|
|
|
ROW_FACTOR, COL_FACTOR);
|
2004-08-24 08:08:29 +08:00
|
|
|
printf("\t-c <dim0> <dim1>\tdataset chunk dimensions. Defaults (dim0/10,dim1/10)\n");
|
1998-02-14 14:22:11 +08:00
|
|
|
printf("\n");
|
|
|
|
}
|
1998-03-11 14:13:01 +08:00
|
|
|
|
|
|
|
|
1998-04-13 12:35:49 +08:00
|
|
|
/*
|
|
|
|
* parse the command line options
|
|
|
|
*/
|
2002-08-27 21:42:40 +08:00
|
|
|
static int
|
1999-07-01 06:04:22 +08:00
|
|
|
parse_options(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int mpi_size, mpi_rank; /* mpi variables */
|
|
|
|
|
|
|
|
MPI_Comm_size(MPI_COMM_WORLD, &mpi_size);
|
|
|
|
MPI_Comm_rank(MPI_COMM_WORLD, &mpi_rank);
|
|
|
|
|
1999-07-03 08:27:36 +08:00
|
|
|
/* setup default chunk-size. Make sure sizes are > 0 */
|
2009-04-03 05:28:48 +08:00
|
|
|
|
1999-07-03 08:27:36 +08:00
|
|
|
chunkdim0 = (dim0+9)/10;
|
|
|
|
chunkdim1 = (dim1+9)/10;
|
|
|
|
|
1998-02-14 14:22:11 +08:00
|
|
|
while (--argc){
|
|
|
|
if (**(++argv) != '-'){
|
|
|
|
break;
|
|
|
|
}else{
|
|
|
|
switch(*(*argv+1)){
|
2000-12-13 07:12:57 +08:00
|
|
|
case 'm': ndatasets = atoi((*argv+1)+1);
|
|
|
|
if (ndatasets < 0){
|
|
|
|
nerrors++;
|
|
|
|
return(1);
|
|
|
|
}
|
2000-10-10 02:23:20 +08:00
|
|
|
break;
|
2001-06-21 04:11:11 +08:00
|
|
|
case 'n': ngroups = atoi((*argv+1)+1);
|
|
|
|
if (ngroups < 0){
|
|
|
|
nerrors++;
|
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
break;
|
1999-07-01 06:04:22 +08:00
|
|
|
case 'f': if (--argc < 1) {
|
1998-08-04 04:22:23 +08:00
|
|
|
nerrors++;
|
|
|
|
return(1);
|
|
|
|
}
|
1999-04-27 12:12:18 +08:00
|
|
|
if (**(++argv) == '-') {
|
1998-08-04 04:22:23 +08:00
|
|
|
nerrors++;
|
|
|
|
return(1);
|
|
|
|
}
|
2000-01-26 12:33:38 +08:00
|
|
|
paraprefix = *argv;
|
1998-08-04 04:22:23 +08:00
|
|
|
break;
|
2002-07-15 23:21:44 +08:00
|
|
|
case 'p': /* Use the MPI-POSIX driver access */
|
|
|
|
facc_type = FACC_MPIPOSIX;
|
|
|
|
break;
|
2006-08-09 11:16:07 +08:00
|
|
|
case 'i': /* Collective MPI-IO access with independent IO */
|
|
|
|
dxfer_coll_type = DXFER_INDEPENDENT_IO;
|
|
|
|
break;
|
2004-08-24 08:08:29 +08:00
|
|
|
case '2': /* Use the split-file driver with MPIO access */
|
2001-11-02 23:21:51 +08:00
|
|
|
/* Can use $HDF5_METAPREFIX to define the */
|
|
|
|
/* meta-file-prefix. */
|
|
|
|
facc_type = FACC_MPIO | FACC_SPLIT;
|
|
|
|
break;
|
1999-07-01 06:04:22 +08:00
|
|
|
case 'd': /* dimensizes */
|
|
|
|
if (--argc < 2){
|
|
|
|
nerrors++;
|
|
|
|
return(1);
|
|
|
|
}
|
2009-04-10 05:32:52 +08:00
|
|
|
dim0 = atoi(*(++argv))*mpi_size;
|
1999-07-01 06:04:22 +08:00
|
|
|
argc--;
|
2009-04-10 05:32:52 +08:00
|
|
|
dim1 = atoi(*(++argv))*mpi_size;
|
1999-07-03 08:27:36 +08:00
|
|
|
/* set default chunkdim sizes too */
|
|
|
|
chunkdim0 = (dim0+9)/10;
|
|
|
|
chunkdim1 = (dim1+9)/10;
|
|
|
|
break;
|
|
|
|
case 'c': /* chunk dimensions */
|
|
|
|
if (--argc < 2){
|
|
|
|
nerrors++;
|
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
chunkdim0 = atoi(*(++argv));
|
|
|
|
argc--;
|
|
|
|
chunkdim1 = atoi(*(++argv));
|
1999-07-01 06:04:22 +08:00
|
|
|
break;
|
|
|
|
case 'h': /* print help message--return with nerrors set */
|
|
|
|
return(1);
|
2004-08-24 08:08:29 +08:00
|
|
|
default: printf("Illegal option(%s)\n", *argv);
|
|
|
|
nerrors++;
|
1998-04-13 12:35:49 +08:00
|
|
|
return(1);
|
1998-02-14 14:22:11 +08:00
|
|
|
}
|
|
|
|
}
|
1999-04-27 12:12:18 +08:00
|
|
|
} /*while*/
|
|
|
|
|
1999-07-03 08:27:36 +08:00
|
|
|
/* check validity of dimension and chunk sizes */
|
1999-07-01 06:04:22 +08:00
|
|
|
if (dim0 <= 0 || dim1 <= 0){
|
|
|
|
printf("Illegal dim sizes (%d, %d)\n", dim0, dim1);
|
|
|
|
nerrors++;
|
|
|
|
return(1);
|
|
|
|
}
|
1999-07-03 08:27:36 +08:00
|
|
|
if (chunkdim0 <= 0 || chunkdim1 <= 0){
|
|
|
|
printf("Illegal chunkdim sizes (%d, %d)\n", chunkdim0, chunkdim1);
|
|
|
|
nerrors++;
|
|
|
|
return(1);
|
|
|
|
}
|
1999-07-01 06:04:22 +08:00
|
|
|
|
|
|
|
/* Make sure datasets can be divided into equal portions by the processes */
|
|
|
|
if ((dim0 % mpi_size) || (dim1 % mpi_size)){
|
|
|
|
if (MAINPROCESS)
|
|
|
|
printf("dim0(%d) and dim1(%d) must be multiples of processes(%d)\n",
|
|
|
|
dim0, dim1, mpi_size);
|
|
|
|
nerrors++;
|
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
|
2000-01-26 12:33:38 +08:00
|
|
|
/* compose the test filenames */
|
|
|
|
{
|
|
|
|
int i, n;
|
|
|
|
|
|
|
|
n = sizeof(FILENAME)/sizeof(FILENAME[0]) - 1; /* exclude the NULL */
|
|
|
|
|
|
|
|
for (i=0; i < n; i++)
|
2000-10-20 14:19:21 +08:00
|
|
|
if (h5_fixname(FILENAME[i],fapl,filenames[i],sizeof(filenames[i]))
|
2000-01-26 12:33:38 +08:00
|
|
|
== NULL){
|
|
|
|
printf("h5_fixname failed\n");
|
1999-04-27 12:12:18 +08:00
|
|
|
nerrors++;
|
|
|
|
return(1);
|
|
|
|
}
|
2000-10-20 14:19:21 +08:00
|
|
|
printf("Test filenames are:\n");
|
|
|
|
for (i=0; i < n; i++)
|
|
|
|
printf(" %s\n", filenames[i]);
|
1998-02-14 14:22:11 +08:00
|
|
|
}
|
1999-04-27 12:12:18 +08:00
|
|
|
|
1998-04-13 12:35:49 +08:00
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-02 23:21:51 +08:00
|
|
|
/*
|
|
|
|
* Create the appropriate File access property list
|
|
|
|
*/
|
|
|
|
hid_t
|
2003-05-06 04:48:33 +08:00
|
|
|
create_faccess_plist(MPI_Comm comm, MPI_Info info, int l_facc_type,
|
|
|
|
hbool_t use_gpfs)
|
2001-11-02 23:21:51 +08:00
|
|
|
{
|
|
|
|
hid_t ret_pl = -1;
|
|
|
|
herr_t ret; /* generic return value */
|
|
|
|
int mpi_rank; /* mpi variables */
|
|
|
|
|
|
|
|
/* need the rank for error checking macros */
|
|
|
|
MPI_Comm_rank(MPI_COMM_WORLD, &mpi_rank);
|
|
|
|
|
|
|
|
ret_pl = H5Pcreate (H5P_FILE_ACCESS);
|
|
|
|
VRFY((ret_pl >= 0), "H5P_FILE_ACCESS");
|
|
|
|
|
2002-06-20 00:06:55 +08:00
|
|
|
if (l_facc_type == FACC_DEFAULT)
|
2001-11-02 23:21:51 +08:00
|
|
|
return (ret_pl);
|
|
|
|
|
2002-06-20 00:06:55 +08:00
|
|
|
if (l_facc_type == FACC_MPIO){
|
2001-11-02 23:21:51 +08:00
|
|
|
/* set Parallel access with communicator */
|
2005-08-14 04:53:35 +08:00
|
|
|
ret = H5Pset_fapl_mpio(ret_pl, comm, info);
|
2001-11-02 23:21:51 +08:00
|
|
|
VRFY((ret >= 0), "");
|
|
|
|
return(ret_pl);
|
|
|
|
}
|
|
|
|
|
2002-06-20 00:06:55 +08:00
|
|
|
if (l_facc_type == (FACC_MPIO | FACC_SPLIT)){
|
2001-11-02 23:21:51 +08:00
|
|
|
hid_t mpio_pl;
|
|
|
|
|
|
|
|
mpio_pl = H5Pcreate (H5P_FILE_ACCESS);
|
|
|
|
VRFY((mpio_pl >= 0), "");
|
|
|
|
/* set Parallel access with communicator */
|
2005-08-14 04:53:35 +08:00
|
|
|
ret = H5Pset_fapl_mpio(mpio_pl, comm, info);
|
2001-11-02 23:21:51 +08:00
|
|
|
VRFY((ret >= 0), "");
|
|
|
|
|
|
|
|
/* setup file access template */
|
|
|
|
ret_pl = H5Pcreate (H5P_FILE_ACCESS);
|
|
|
|
VRFY((ret_pl >= 0), "");
|
|
|
|
/* set Parallel access with communicator */
|
|
|
|
ret = H5Pset_fapl_split(ret_pl, ".meta", mpio_pl, ".raw", mpio_pl);
|
|
|
|
VRFY((ret >= 0), "H5Pset_fapl_split succeeded");
|
|
|
|
H5Pclose(mpio_pl);
|
|
|
|
return(ret_pl);
|
|
|
|
}
|
|
|
|
|
2002-07-15 23:21:44 +08:00
|
|
|
if (l_facc_type == FACC_MPIPOSIX) {
|
|
|
|
/* set Parallel access with communicator */
|
2003-05-06 04:48:33 +08:00
|
|
|
ret = H5Pset_fapl_mpiposix(ret_pl, comm, use_gpfs);
|
|
|
|
VRFY((ret >= 0), "H5Pset_fapl_mpiposix succeeded");
|
2002-07-15 23:21:44 +08:00
|
|
|
return(ret_pl);
|
|
|
|
}
|
|
|
|
|
2001-11-02 23:21:51 +08:00
|
|
|
/* unknown file access types */
|
|
|
|
return (ret_pl);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-06-20 00:06:55 +08:00
|
|
|
int main(int argc, char **argv)
|
1998-04-13 12:35:49 +08:00
|
|
|
{
|
1998-07-02 05:33:35 +08:00
|
|
|
int mpi_size, mpi_rank; /* mpi variables */
|
2004-04-02 07:00:13 +08:00
|
|
|
H5Ptest_param_t ndsets_params, ngroups_params;
|
|
|
|
H5Ptest_param_t collngroups_params;
|
2004-09-19 05:38:44 +08:00
|
|
|
H5Ptest_param_t io_mode_confusion_params;
|
2010-10-17 23:13:24 +08:00
|
|
|
H5Ptest_param_t rr_obj_flush_confusion_params;
|
1998-07-02 05:33:35 +08:00
|
|
|
|
2002-07-15 23:21:44 +08:00
|
|
|
/* Un-buffer the stdout and stderr */
|
|
|
|
setbuf(stderr, NULL);
|
|
|
|
setbuf(stdout, NULL);
|
|
|
|
|
1998-07-02 05:33:35 +08:00
|
|
|
MPI_Init(&argc, &argv);
|
|
|
|
MPI_Comm_size(MPI_COMM_WORLD, &mpi_size);
|
|
|
|
MPI_Comm_rank(MPI_COMM_WORLD, &mpi_rank);
|
|
|
|
|
2009-04-17 09:32:13 +08:00
|
|
|
dim0 = ROW_FACTOR*mpi_size;
|
|
|
|
dim1 = COL_FACTOR*mpi_size;
|
|
|
|
|
1998-07-02 05:33:35 +08:00
|
|
|
if (MAINPROCESS){
|
|
|
|
printf("===================================\n");
|
|
|
|
printf("PHDF5 TESTS START\n");
|
|
|
|
printf("===================================\n");
|
|
|
|
}
|
2011-01-16 17:44:22 +08:00
|
|
|
|
|
|
|
/* Attempt to turn off atexit post processing so that in case errors
|
|
|
|
* happen during the test and the process is aborted, it will not get
|
|
|
|
* hang in the atexit post processing in which it may try to make MPI
|
|
|
|
* calls. By then, MPI calls may not work.
|
|
|
|
*/
|
|
|
|
if (H5dont_atexit() < 0){
|
|
|
|
printf("Failed to turn off atexit processing. Continue.\n", mpi_rank);
|
|
|
|
};
|
2003-04-18 11:04:56 +08:00
|
|
|
H5open();
|
2002-04-23 04:24:59 +08:00
|
|
|
h5_show_hostname();
|
|
|
|
|
2004-04-02 07:00:13 +08:00
|
|
|
/* Initialize testing framework */
|
2004-08-19 14:32:47 +08:00
|
|
|
TestInit(argv[0], usage, parse_options);
|
2004-04-02 07:00:13 +08:00
|
|
|
|
|
|
|
/* Tests are generally arranged from least to most complexity... */
|
2005-08-14 04:53:35 +08:00
|
|
|
AddTest("mpiodup", test_fapl_mpio_dup, NULL,
|
2004-09-01 12:07:21 +08:00
|
|
|
"fapl_mpio duplicate", NULL);
|
2005-08-14 04:53:35 +08:00
|
|
|
AddTest("posixdup", test_fapl_mpiposix_dup, NULL,
|
2004-09-01 12:07:21 +08:00
|
|
|
"fapl_mpiposix duplicate", NULL);
|
2004-04-02 07:00:13 +08:00
|
|
|
|
2005-08-14 04:53:35 +08:00
|
|
|
AddTest("split", test_split_comm_access, NULL,
|
2004-09-25 05:20:24 +08:00
|
|
|
"dataset using split communicators", PARATESTFILE);
|
|
|
|
|
2005-08-14 04:53:35 +08:00
|
|
|
AddTest("idsetw", dataset_writeInd, NULL,
|
2004-09-25 05:20:24 +08:00
|
|
|
"dataset independent write", PARATESTFILE);
|
2005-08-14 04:53:35 +08:00
|
|
|
AddTest("idsetr", dataset_readInd, NULL,
|
2004-09-25 05:20:24 +08:00
|
|
|
"dataset independent read", PARATESTFILE);
|
|
|
|
|
2005-08-14 04:53:35 +08:00
|
|
|
AddTest("cdsetw", dataset_writeAll, NULL,
|
2004-09-25 05:20:24 +08:00
|
|
|
"dataset collective write", PARATESTFILE);
|
2005-08-14 04:53:35 +08:00
|
|
|
AddTest("cdsetr", dataset_readAll, NULL,
|
2004-09-25 05:20:24 +08:00
|
|
|
"dataset collective read", PARATESTFILE);
|
|
|
|
|
2005-08-14 04:53:35 +08:00
|
|
|
AddTest("eidsetw", extend_writeInd, NULL,
|
2004-09-25 05:20:24 +08:00
|
|
|
"extendible dataset independent write", PARATESTFILE);
|
2005-08-14 04:53:35 +08:00
|
|
|
AddTest("eidsetr", extend_readInd, NULL,
|
2004-09-25 05:20:24 +08:00
|
|
|
"extendible dataset independent read", PARATESTFILE);
|
2005-08-14 04:53:35 +08:00
|
|
|
AddTest("ecdsetw", extend_writeAll, NULL,
|
2004-09-25 05:20:24 +08:00
|
|
|
"extendible dataset collective write", PARATESTFILE);
|
2005-08-14 04:53:35 +08:00
|
|
|
AddTest("ecdsetr", extend_readAll, NULL,
|
2004-09-25 05:20:24 +08:00
|
|
|
"extendible dataset collective read", PARATESTFILE);
|
2005-08-14 04:53:35 +08:00
|
|
|
AddTest("eidsetw2", extend_writeInd2, NULL,
|
2004-09-25 05:20:24 +08:00
|
|
|
"extendible dataset independent write #2", PARATESTFILE);
|
2007-08-21 05:55:38 +08:00
|
|
|
AddTest("selnone", none_selection_chunk, NULL,
|
|
|
|
"chunked dataset with none-selection", PARATESTFILE);
|
2005-08-30 12:35:17 +08:00
|
|
|
AddTest("calloc", test_chunk_alloc, NULL,
|
|
|
|
"parallel extend Chunked allocation on serial file", PARATESTFILE);
|
2007-05-22 08:06:37 +08:00
|
|
|
AddTest("fltread", test_filter_read, NULL,
|
|
|
|
"parallel read of dataset written serially with filters", PARATESTFILE);
|
2004-09-25 05:20:24 +08:00
|
|
|
|
2004-10-05 04:29:31 +08:00
|
|
|
#ifdef H5_HAVE_FILTER_DEFLATE
|
2005-08-14 04:53:35 +08:00
|
|
|
AddTest("cmpdsetr", compress_readAll, NULL,
|
2004-10-05 04:29:31 +08:00
|
|
|
"compressed dataset collective read", PARATESTFILE);
|
|
|
|
#endif /* H5_HAVE_FILTER_DEFLATE */
|
|
|
|
|
2004-09-25 05:20:24 +08:00
|
|
|
ndsets_params.name = PARATESTFILE;
|
2004-04-02 07:00:13 +08:00
|
|
|
ndsets_params.count = ndatasets;
|
2005-08-14 04:53:35 +08:00
|
|
|
AddTest("ndsetw", multiple_dset_write, NULL,
|
2004-04-02 07:00:13 +08:00
|
|
|
"multiple datasets write", &ndsets_params);
|
|
|
|
|
2004-09-25 05:20:24 +08:00
|
|
|
ngroups_params.name = PARATESTFILE;
|
2004-04-02 07:00:13 +08:00
|
|
|
ngroups_params.count = ngroups;
|
2005-08-14 04:53:35 +08:00
|
|
|
AddTest("ngrpw", multiple_group_write, NULL,
|
2004-04-02 07:00:13 +08:00
|
|
|
"multiple groups write", &ngroups_params);
|
2005-08-14 04:53:35 +08:00
|
|
|
AddTest("ngrpr", multiple_group_read, NULL,
|
2004-04-02 07:00:13 +08:00
|
|
|
"multiple groups read", &ngroups_params);
|
|
|
|
|
2005-08-14 04:53:35 +08:00
|
|
|
AddTest("compact", compact_dataset, NULL,
|
2004-09-25 05:20:24 +08:00
|
|
|
"compact dataset test", PARATESTFILE);
|
2004-04-02 07:00:13 +08:00
|
|
|
|
2004-09-25 05:20:24 +08:00
|
|
|
collngroups_params.name = PARATESTFILE;
|
2004-04-02 07:00:13 +08:00
|
|
|
collngroups_params.count = ngroups;
|
2005-08-14 04:53:35 +08:00
|
|
|
AddTest("cngrpw", collective_group_write, NULL,
|
2004-04-02 07:00:13 +08:00
|
|
|
"collective group and dataset write", &collngroups_params);
|
2005-08-14 04:53:35 +08:00
|
|
|
AddTest("ingrpr", independent_group_read, NULL,
|
2004-04-02 07:00:13 +08:00
|
|
|
"independent group and dataset read", &collngroups_params);
|
2009-08-19 04:22:14 +08:00
|
|
|
AddTest("bigdset", big_dataset, NULL,
|
2005-09-21 21:41:09 +08:00
|
|
|
"big dataset test", PARATESTFILE);
|
2005-08-14 04:53:35 +08:00
|
|
|
AddTest("fill", dataset_fillvalue, NULL,
|
2004-09-25 05:20:24 +08:00
|
|
|
"dataset fill value", PARATESTFILE);
|
2004-08-13 21:29:43 +08:00
|
|
|
|
2005-07-13 03:26:26 +08:00
|
|
|
AddTest("cchunk1",
|
|
|
|
coll_chunk1,NULL, "simple collective chunk io",PARATESTFILE);
|
|
|
|
AddTest("cchunk2",
|
|
|
|
coll_chunk2,NULL, "noncontiguous collective chunk io",PARATESTFILE);
|
|
|
|
AddTest("cchunk3",
|
|
|
|
coll_chunk3,NULL, "multi-chunk collective chunk io",PARATESTFILE);
|
2006-03-29 22:35:26 +08:00
|
|
|
AddTest("cchunk4",
|
2006-02-17 01:12:08 +08:00
|
|
|
coll_chunk4,NULL, "collective chunk io with partial non-selection ",PARATESTFILE);
|
2005-07-13 03:26:26 +08:00
|
|
|
|
2006-03-29 22:35:26 +08:00
|
|
|
if((mpi_size < 3)&& MAINPROCESS ) {
|
|
|
|
printf("Collective chunk IO optimization APIs ");
|
|
|
|
printf("needs at least 3 processes to participate\n");
|
|
|
|
printf("Collective chunk IO API tests will be skipped \n");
|
|
|
|
}
|
|
|
|
AddTest((mpi_size <3)? "-cchunk5":"cchunk5" ,
|
|
|
|
coll_chunk5,NULL,
|
|
|
|
"linked chunk collective IO without optimization",PARATESTFILE);
|
|
|
|
AddTest((mpi_size < 3)? "-cchunk6" : "cchunk6",
|
|
|
|
coll_chunk6,NULL,
|
|
|
|
"multi-chunk collective IO without optimization",PARATESTFILE);
|
|
|
|
AddTest((mpi_size < 3)? "-cchunk7" : "cchunk7",
|
|
|
|
coll_chunk7,NULL,
|
|
|
|
"linked chunk collective IO with optimization",PARATESTFILE);
|
|
|
|
AddTest((mpi_size < 3)? "-cchunk8" : "cchunk8",
|
|
|
|
coll_chunk8,NULL,
|
|
|
|
"linked chunk collective IO transferring to multi-chunk",PARATESTFILE);
|
|
|
|
AddTest((mpi_size < 3)? "-cchunk9" : "cchunk9",
|
|
|
|
coll_chunk9,NULL,
|
|
|
|
"multiple chunk collective IO with optimization",PARATESTFILE);
|
|
|
|
AddTest((mpi_size < 3)? "-cchunk10" : "cchunk10",
|
|
|
|
coll_chunk10,NULL,
|
|
|
|
"multiple chunk collective IO transferring to independent IO",PARATESTFILE);
|
2008-09-16 23:52:51 +08:00
|
|
|
|
|
|
|
|
2006-03-29 22:35:26 +08:00
|
|
|
|
2005-07-13 03:26:26 +08:00
|
|
|
/* irregular collective IO tests*/
|
|
|
|
AddTest("ccontw",
|
|
|
|
coll_irregular_cont_write,NULL,
|
|
|
|
"collective irregular contiguous write",PARATESTFILE);
|
|
|
|
AddTest("ccontr",
|
|
|
|
coll_irregular_cont_read,NULL,
|
|
|
|
"collective irregular contiguous read",PARATESTFILE);
|
|
|
|
AddTest("cschunkw",
|
|
|
|
coll_irregular_simple_chunk_write,NULL,
|
|
|
|
"collective irregular simple chunk write",PARATESTFILE);
|
|
|
|
AddTest("cschunkr",
|
|
|
|
coll_irregular_simple_chunk_read,NULL,
|
|
|
|
"collective irregular simple chunk read",PARATESTFILE);
|
|
|
|
AddTest("ccchunkw",
|
|
|
|
coll_irregular_complex_chunk_write,NULL,
|
|
|
|
"collective irregular complex chunk write",PARATESTFILE);
|
|
|
|
AddTest("ccchunkr",
|
|
|
|
coll_irregular_complex_chunk_read,NULL,
|
|
|
|
"collective irregular complex chunk read",PARATESTFILE);
|
2005-08-14 04:53:35 +08:00
|
|
|
|
|
|
|
AddTest("null", null_dataset, NULL,
|
2004-09-25 05:20:24 +08:00
|
|
|
"null dataset test", PARATESTFILE);
|
2004-08-03 01:51:50 +08:00
|
|
|
|
2004-09-25 05:20:24 +08:00
|
|
|
io_mode_confusion_params.name = PARATESTFILE;
|
2004-09-19 05:38:44 +08:00
|
|
|
io_mode_confusion_params.count = 0; /* value not used */
|
|
|
|
|
2005-08-14 04:53:35 +08:00
|
|
|
AddTest("I/Omodeconf", io_mode_confusion, NULL,
|
|
|
|
"I/O mode confusion test -- hangs quickly on failure",
|
2004-09-19 05:38:44 +08:00
|
|
|
&io_mode_confusion_params);
|
2004-12-29 22:26:20 +08:00
|
|
|
|
2010-10-17 23:13:24 +08:00
|
|
|
rr_obj_flush_confusion_params.name = PARATESTFILE;
|
|
|
|
rr_obj_flush_confusion_params.count = 0; /* value not used */
|
|
|
|
AddTest("rrobjflushconf", rr_obj_hdr_flush_confusion, NULL,
|
|
|
|
"round robin object header flush confusion test",
|
|
|
|
&rr_obj_flush_confusion_params);
|
|
|
|
|
[svn-r19092] Description:
Bring "shape same" changes from LBL branch to trunk. These changes
allow shapes that are the same, but projected into dataspaces with different
ranks to be detected correctly, and also contains code to project a dataspace
into greater/lesser number of dimensions, so the I/O can proceed in a faster
way.
These changes also contain several bug fixes and _lots_ of code
cleanups to the MPI datatype creation code.
Many other misc. code cleanup are included as well...
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.3 (amazon) in debug mode
Mac OS X/32 10.6.3 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2010-07-19 13:05:45 +08:00
|
|
|
AddTest("tldsc",
|
|
|
|
lower_dim_size_comp_test, NULL,
|
|
|
|
"test lower dim size comp in span tree to mpi derived type",
|
|
|
|
PARATESTFILE);
|
|
|
|
|
|
|
|
AddTest("lccio",
|
|
|
|
link_chunk_collective_io_test, NULL,
|
|
|
|
"test mpi derived type management",
|
|
|
|
PARATESTFILE);
|
|
|
|
|
[svn-r21442] Description:
Check in "actual I/O mode" feature to trunk. Will merge back to 1.8 branch
after it bakes over the weekend.
Tested on:
FreeBSD/32 8.2 (loyalty) w/gcc4.6, w/C++ & FORTRAN, in debug mode
FreeBSD/64 8.2 (freedom) w/gcc4.6, w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (koala) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, w/threadsafe, in production mode
Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-ia64 2.6 (ember) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.8 (amazon) in debug mode
Mac OS X/32 10.6.8 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2011-10-01 09:37:23 +08:00
|
|
|
AddTest("actualio", actual_io_mode_tests, NULL,
|
|
|
|
"test actual io mode proprerty",
|
|
|
|
PARATESTFILE);
|
[svn-r19092] Description:
Bring "shape same" changes from LBL branch to trunk. These changes
allow shapes that are the same, but projected into dataspaces with different
ranks to be detected correctly, and also contains code to project a dataspace
into greater/lesser number of dimensions, so the I/O can proceed in a faster
way.
These changes also contain several bug fixes and _lots_ of code
cleanups to the MPI datatype creation code.
Many other misc. code cleanup are included as well...
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
w/C++ & FORTRAN, w/threadsafe, in debug mode
Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
w/C++ & FORTRAN, in production mode
Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
w/szip filter, in production mode
Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
in production mode
Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in debug mode
Mac OS X/32 10.6.3 (amazon) in debug mode
Mac OS X/32 10.6.3 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
2010-07-19 13:05:45 +08:00
|
|
|
|
2004-04-02 07:00:13 +08:00
|
|
|
/* Display testing information */
|
|
|
|
TestInfo(argv[0]);
|
|
|
|
|
2004-08-14 06:06:42 +08:00
|
|
|
/* setup file access property list */
|
|
|
|
fapl = H5Pcreate (H5P_FILE_ACCESS);
|
|
|
|
H5Pset_fapl_mpio(fapl, MPI_COMM_WORLD, MPI_INFO_NULL);
|
|
|
|
|
2004-04-02 07:00:13 +08:00
|
|
|
/* Parse command line arguments */
|
2004-08-19 14:32:47 +08:00
|
|
|
TestParseCmdLine(argc, argv);
|
2004-08-14 06:06:42 +08:00
|
|
|
|
|
|
|
if (facc_type == FACC_MPIPOSIX && MAINPROCESS){
|
|
|
|
printf("===================================\n"
|
|
|
|
" Using MPIPOSIX driver\n"
|
|
|
|
"===================================\n");
|
|
|
|
}
|
|
|
|
|
2006-08-09 11:16:07 +08:00
|
|
|
if (dxfer_coll_type == DXFER_INDEPENDENT_IO && MAINPROCESS){
|
|
|
|
printf("===================================\n"
|
|
|
|
" Using Independent I/O with file set view to replace collective I/O \n"
|
|
|
|
"===================================\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-04-02 07:00:13 +08:00
|
|
|
/* Perform requested testing */
|
|
|
|
PerformTests();
|
|
|
|
|
2004-08-24 08:08:29 +08:00
|
|
|
/* make sure all processes are finished before final report, cleanup
|
|
|
|
* and exit.
|
|
|
|
*/
|
|
|
|
MPI_Barrier(MPI_COMM_WORLD);
|
|
|
|
|
2004-04-02 07:00:13 +08:00
|
|
|
/* Display test summary, if requested */
|
2004-08-24 08:08:29 +08:00
|
|
|
if (MAINPROCESS && GetTestSummary())
|
2004-04-02 07:00:13 +08:00
|
|
|
TestSummary();
|
|
|
|
|
2006-01-06 22:52:25 +08:00
|
|
|
/* Clean up test files */
|
|
|
|
h5_cleanup(FILENAME, fapl);
|
2004-04-02 07:00:13 +08:00
|
|
|
|
2004-07-14 02:42:47 +08:00
|
|
|
nerrors += GetTestNumErrs();
|
2004-04-02 07:00:13 +08:00
|
|
|
|
2004-07-14 02:42:47 +08:00
|
|
|
/* Gather errors from all processes */
|
|
|
|
{
|
|
|
|
int temp;
|
2004-08-24 08:08:29 +08:00
|
|
|
MPI_Allreduce(&nerrors, &temp, 1, MPI_INT, MPI_MAX, MPI_COMM_WORLD);
|
|
|
|
nerrors=temp;
|
2004-07-14 02:42:47 +08:00
|
|
|
}
|
|
|
|
|
1998-07-02 05:33:35 +08:00
|
|
|
if (MAINPROCESS){ /* only process 0 reports */
|
1998-05-30 03:57:05 +08:00
|
|
|
printf("===================================\n");
|
2004-07-14 02:42:47 +08:00
|
|
|
if (nerrors)
|
1998-03-31 01:03:46 +08:00
|
|
|
printf("***PHDF5 tests detected %d errors***\n", nerrors);
|
2004-07-14 02:42:47 +08:00
|
|
|
else
|
1998-03-31 01:03:46 +08:00
|
|
|
printf("PHDF5 tests finished with no errors\n");
|
1998-05-30 03:57:05 +08:00
|
|
|
printf("===================================\n");
|
1998-03-31 01:03:46 +08:00
|
|
|
}
|
2003-02-18 13:12:58 +08:00
|
|
|
/* close HDF5 library */
|
|
|
|
H5close();
|
2003-04-18 11:04:56 +08:00
|
|
|
|
2003-02-18 13:12:58 +08:00
|
|
|
/* MPI_Finalize must be called AFTER H5close which may use MPI calls */
|
|
|
|
MPI_Finalize();
|
2004-08-20 13:03:28 +08:00
|
|
|
|
|
|
|
/* cannot just return (nerrors) because exit code is limited to 1byte */
|
|
|
|
return(nerrors!=0);
|
1998-02-14 14:22:11 +08:00
|
|
|
}
|
|
|
|
|