2010-10-21 01:20:28 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# This shell runs some parallel I/O tests.
|
|
|
|
|
|
|
|
set -e
|
|
|
|
echo
|
|
|
|
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
|
2010-10-21 01:20:28 +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
|
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
|