summaryrefslogtreecommitdiffstats
path: root/testpar/testphdf5.c
diff options
context:
space:
mode:
authorChristian Chilan <chilan@hdfgroup.org>2009-04-17 01:32:13 (GMT)
committerChristian Chilan <chilan@hdfgroup.org>2009-04-17 01:32:13 (GMT)
commit2c94653c7e14c8a02c9c64965fe7a00495125546 (patch)
tree9ecbe58c12fd49cd61406bc234fa5f483b0d0b2d /testpar/testphdf5.c
parent7cb785674ed597083005ecb6045dcf2c7c91b183 (diff)
downloadhdf5-2c94653c7e14c8a02c9c64965fe7a00495125546.zip
hdf5-2c94653c7e14c8a02c9c64965fe7a00495125546.tar.gz
hdf5-2c94653c7e14c8a02c9c64965fe7a00495125546.tar.bz2
[svn-r16770] Modified parallel tests so they can run with arbitrary number of processors.
Tested on jam and abe.
Diffstat (limited to 'testpar/testphdf5.c')
-rw-r--r--testpar/testphdf5.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/testpar/testphdf5.c b/testpar/testphdf5.c
index c88d265..175d159 100644
--- a/testpar/testphdf5.c
+++ b/testpar/testphdf5.c
@@ -138,8 +138,6 @@ parse_options(int argc, char **argv)
MPI_Comm_rank(MPI_COMM_WORLD, &mpi_rank);
/* setup default chunk-size. Make sure sizes are > 0 */
- dim0 = ROW_FACTOR*mpi_size;
- dim1 = COL_FACTOR*mpi_size;
chunkdim0 = (dim0+9)/10;
chunkdim1 = (dim1+9)/10;
@@ -328,6 +326,9 @@ int main(int argc, char **argv)
MPI_Comm_size(MPI_COMM_WORLD, &mpi_size);
MPI_Comm_rank(MPI_COMM_WORLD, &mpi_rank);
+ dim0 = ROW_FACTOR*mpi_size;
+ dim1 = COL_FACTOR*mpi_size;
+
if (MAINPROCESS){
printf("===================================\n");
printf("PHDF5 TESTS START\n");