mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
29 lines
874 B
Bash
Executable File
29 lines
874 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This shell file tests the bm_ile program for parallel I/O.
|
|
|
|
# $Id: run_par_bm_test.sh,v 1.5 2007/12/12 18:00:39 ed Exp $
|
|
|
|
set -e
|
|
echo ""
|
|
for type_name in floats ints shorts
|
|
do
|
|
echo "*** Running bm_file for parallel access on simple ${type_name} test files, 1D to 6D..."
|
|
header="-h"
|
|
for ((i=1; i <= 3; i++))
|
|
do
|
|
test $i = 1 && chunksizes="100000"
|
|
test $i = 2 && chunksizes="316:316"
|
|
test $i = 3 && chunksizes="46:46:46"
|
|
for numproc in 1 4 16
|
|
do
|
|
mpiexec -n $numproc ./bm_file -p -d ${header} -s ${numproc} -f 4 -o p_${type_name}2_${i}D_3.nc -c 0:-1:0:${chunksizes} ${type_name}2_${i}D_3.nc
|
|
../ncdump/ncdump -n tst_${type_name}2_${i}D p_${type_name}2_${i}D_3.nc > p_${type_name}2_${i}D.cdl
|
|
diff tst_${type_name}2_${i}D.cdl p_${type_name}2_${i}D.cdl &> /dev/null
|
|
header=
|
|
done
|
|
done
|
|
echo '*** SUCCESS!!!'
|
|
done
|
|
|
|
exit 0 |