[svn-r1914] t_mdset.c:

Increase the test size to 32.  Put in a check to make sure number of
    processes are not bigger than SIZE.
testphdf5.c:
    Fixed a mistake in the prototype of pause_proc to reflect no arguments.
This commit is contained in:
Albert Cheng 1999-12-20 09:53:44 -05:00
parent 87ffeb2962
commit ccb5c0ad84
2 changed files with 5 additions and 6 deletions

View File

@ -1,7 +1,7 @@
#include <testphdf5.h>
#define DIM 2
#define SIZE 10
#define SIZE 32
#define NUMITEMS 500 /* 988 */
void multiple_dset_write(char *filename)
@ -15,6 +15,8 @@ void multiple_dset_write(char *filename)
MPI_Comm_rank (MPI_COMM_WORLD, &rank);
MPI_Comm_size (MPI_COMM_WORLD, &nprocs);
VRFY((nprocs <= SIZE), "nprocs <= SIZE");
chunk_origin [0] = 0;
chunk_origin [1] = rank * (SIZE / nprocs);
chunk_dims [0] = SIZE;
@ -42,10 +44,7 @@ void multiple_dset_write(char *filename)
sprintf (dname, "dataset %d", i);
dataset = H5Dcreate (iof, dname, H5T_NATIVE_FLOAT, filespace, H5P_DEFAULT);
if (dataset < 0) {
fprintf (stderr, "proc %d: failed to create dataset %d\n", rank, i);
exit (-1);
}
VRFY((dataset > 0), "dataset create succeeded");
H5Dwrite (dataset, H5T_NATIVE_DOUBLE, memspace, filespace, H5P_DEFAULT, outme);

View File

@ -46,7 +46,7 @@ char *filenames[]={ "ParaEg1.h5f",
#include <sys/types.h>
#include <sys/stat.h>
void pause_proc()
void pause_proc(void)
{
int pid;