#define FSPACE_DIM2      3600                                                                                         /* We will read dataset back from the file                                         to the dataset in memory with these                                                                      dataspace parameters. */
 
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Copyright by The HDF Group.                                               *
 * 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 COPYING file, which can be found at the root of the source code       *
 * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases.  *
 * If you do not have access to either file, you may request a copy from     *
 * help@hdfgroup.org.                                                        *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* common definitions used by all parallel hdf5 test programs. */
#ifndef PHDF5TEST_H
#define PHDF5TEST_H
#include "testpar.h"
enum H5TEST_COLL_CHUNK_API {API_NONE=0,API_LINK_HARD,
                        API_MULTI_HARD,API_LINK_TRUE,API_LINK_FALSE,
                            API_MULTI_COLL,API_MULTI_IND};
#ifndef FALSE
#define FALSE   0
#endif
#ifndef TRUE
#define TRUE    1
#endif
/* Constants definitions */
#define DIM0        600     /* Default dataset sizes. */
#define DIM1        1200    /* Values are from a monitor pixel sizes */
#define ROW_FACTOR  8   /* Nominal row factor for dataset size */
#define COL_FACTOR  16  /* Nominal column factor for dataset size */
#define RANK        2
#define DATASETNAME1    "Data1"
#define DATASETNAME2    "Data2"
#define DATASETNAME3    "Data3"
#define DATASETNAME4    "Data4"
#define DATASETNAME5    "Data5"
#define DATASETNAME6    "Data6"
#define DATASETNAME7    "Data7"
#define DATASETNAME8    "Data8"
#define DATASETNAME9    "Data9"
/* point selection order */
#define IN_ORDER 1