-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathparallel_run.sh
executable file
·76 lines (66 loc) · 2 KB
/
parallel_run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/bin/bash
#
# Copyright (C) 2024, Northwestern University and Argonne National Laboratory
# See COPYRIGHT notice in top-level directory.
#
# Exit immediately if a command exits with a non-zero status.
set -e
# Get the directory containing this script
if test "x$NPROC" = x ; then
NPROC=4
fi
# get output folder from command line
if test "$#" -gt 0 ; then
args=("$@")
OUT_DIR="${args[0]}"
# check if output folder exists
if ! test -d $OUT_DIR ; then
echo "Error: output folder \"$OUT_DIR\" does not exist."
exit 1
fi
else
# output folder is not set at command line, use current folder
OUT_DIR="."
fi
# echo "OUT_DIR=$OUT_DIR"
MPI4PY_VERSION=`python -c "import mpi4py; print(mpi4py.__version__)"`
MPI4PY_VERSION_MAJOR=`echo ${MPI4PY_VERSION} | cut -d. -f1`
# echo "MPI4PY_VERSION=$MPI4PY_VERSION"
# echo "MPI4PY_VERSION_MAJOR=$MPI4PY_VERSION_MAJOR"
TEST_FLEXIBLE_API=no
if test "x$PNETCDF_DIR" != x ; then
PNETCDF_C_VERSION=`$PNETCDF_DIR/bin/pnetcdf-config --version | cut -d' ' -f2`
V_MAJOR=`echo ${PNETCDF_C_VERSION} | cut -d. -f1`
V_MINOR=`echo ${PNETCDF_C_VERSION} | cut -d. -f2`
V_SUB=`echo ${PNETCDF_C_VERSION} | cut -d. -f3`
VER_NUM=$((V_MAJOR*1000000 + V_MINOR*1000 + V_SUB))
if test $VER_NUM -gt 1013000 ; then
TEST_FLEXIBLE_API=yes
fi
fi
# test PnetCDF flexible APIs only when PnetCDF-C >= 1.13.1 or mpi4py < 4
if test $MPI4PY_VERSION_MAJOR -lt 4 ; then
TEST_FLEXIBLE_API=yes
fi
for prog in $check_PROGRAMS; do
if test "x$TEST_FLEXIBLE_API" = xno &&
test "x$prog" = "xflexible_api.py" ; then
TETS_PROGS+=" flexible_api.py"
printf '%-60s' "Testing $prog"
echo " ---- SKIP"
continue
fi
printf '%-60s' "Testing $prog"
if test $prog = "get_var.py" ; then
CMD="mpiexec -n $NPROC python $prog -q $OUT_DIR/put_var.nc"
else
CMD="mpiexec -n $NPROC python $prog -q $OUT_DIR/${prog%.*}.nc"
fi
$CMD
status=$?
if [ $status -ne 0 ]; then
echo " ---- FAIL"
else
echo " ---- PASS"
fi
done