2010-10-21 01:20:28 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
2017-03-09 08:01:10 +08:00
|
|
|
if test "x$srcdir" = x ; then srcdir=`pwd`; fi
|
|
|
|
. ../test_common.sh
|
|
|
|
|
2010-10-21 01:20:28 +08:00
|
|
|
# This shell runs some parallel I/O tests.
|
|
|
|
|
|
|
|
set -e
|
|
|
|
echo
|
2016-02-02 07:15:58 +08:00
|
|
|
echo "Testing MPI parallel I/O with various other mode flags..."
|
|
|
|
mpiexec -n 1 ./tst_mode
|
|
|
|
echo
|
2010-10-21 01:20:28 +08:00
|
|
|
echo "Testing MPI parallel I/O without netCDF..."
|
2010-06-03 21:24:43 +08:00
|
|
|
mpiexec -n 4 ./tst_mpi_parallel
|
2010-10-21 01:20:28 +08:00
|
|
|
echo
|
|
|
|
echo "Testing very simple parallel I/O with 4 processors..."
|
2010-06-03 21:24:43 +08:00
|
|
|
mpiexec -n 4 ./tst_parallel
|
2010-10-21 01:20:28 +08:00
|
|
|
echo
|
|
|
|
echo "Testing simple parallel I/O with 16 processors..."
|
2010-06-03 21:24:43 +08:00
|
|
|
mpiexec -n 16 ./tst_parallel3
|
2016-06-10 01:23:14 +08:00
|
|
|
echo
|
2010-06-03 21:24:43 +08:00
|
|
|
echo "num_proc time(s) write_rate(B/s)"
|
|
|
|
mpiexec -n 1 ./tst_parallel4
|
|
|
|
mpiexec -n 2 ./tst_parallel4
|
|
|
|
mpiexec -n 4 ./tst_parallel4
|
|
|
|
mpiexec -n 8 ./tst_parallel4
|
2016-02-02 07:15:58 +08:00
|
|
|
|
2011-05-02 22:12:32 +08:00
|
|
|
#mpiexec -n 16 ./tst_parallel4
|
2011-03-15 18:19:08 +08:00
|
|
|
#mpiexec -n 32 ./tst_parallel4
|
2010-10-21 01:20:28 +08:00
|
|
|
#mpiexec -n 64 ./tst_parallel4
|
|
|
|
echo
|
|
|
|
echo "Parallel Performance Test for NASA"
|
2010-06-03 21:24:43 +08:00
|
|
|
mpiexec -n 4 ./tst_nc4perf
|
2016-06-10 01:23:14 +08:00
|
|
|
|
|
|
|
echo
|
|
|
|
echo "Parallel I/O test for Collective I/O, contributed by HDF Group."
|
2016-06-10 01:26:06 +08:00
|
|
|
mpiexec -n 1 ./tst_simplerw_coll_r
|
|
|
|
mpiexec -n 2 ./tst_simplerw_coll_r
|