mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-28 20:13:49 -06:00
48 lines
1.4 KiB
Bash
Executable File
48 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# This performs a serial and a parallel for a simulator,
|
|
# then compares the summary and restart files from the two runs.
|
|
# Meant to track regression in parallel simulators.
|
|
|
|
INPUT_DATA_PATH="$1"
|
|
RESULT_PATH="$2"
|
|
BINPATH="$3"
|
|
FILENAME="$4"
|
|
ABS_TOL="$5"
|
|
REL_TOL="$6"
|
|
COMPARE_SUMMARY_COMMAND="$7"
|
|
COMPARE_ECL_COMMAND="$8"
|
|
EXE_NAME="${9}"
|
|
shift 9
|
|
TEST_ARGS="$@"
|
|
|
|
rm -Rf ${RESULT_PATH}
|
|
mkdir -p ${RESULT_PATH}
|
|
cd ${RESULT_PATH}
|
|
${BINPATH}/${EXE_NAME} ${TEST_ARGS}.DATA linear_solver_reduction=1e-7 tolerance_cnv=5e-6 tolerance_mb=1e-8
|
|
test $? -eq 0 || exit 1
|
|
mkdir mpi
|
|
cd mpi
|
|
mpirun -np 4 ${BINPATH}/${EXE_NAME} ${TEST_ARGS}.DATA linear_solver_reduction=1e-7 tolerance_cnv=5e-6 tolerance_mb=1e-8
|
|
test $? -eq 0 || exit 1
|
|
cd ..
|
|
|
|
ecode=0
|
|
echo "=== Executing comparison for summary file ==="
|
|
${COMPARE_SUMMARY_COMMAND} -R ${RESULT_PATH}/${FILENAME} ${RESULT_PATH}/mpi/${FILENAME} ${ABS_TOL} ${REL_TOL}
|
|
if [ $? -ne 0 ]
|
|
then
|
|
ecode=1
|
|
`dirname $0`/analyze_summary_failure.sh ${COMPARE_SUMMARY_COMMAND} -R ${RESULT_PATH}/${FILENAME} ${RESULT_PATH}/mpi/${FILENAME} ${ABS_TOL} ${REL_TOL}
|
|
fi
|
|
|
|
echo "=== Executing comparison for restart file ==="
|
|
${COMPARE_ECL_COMMAND} -l ${RESULT_PATH}/${FILENAME} ${RESULT_PATH}/mpi/${FILENAME} ${ABS_TOL} ${REL_TOL}
|
|
if [ $? -ne 0 ]
|
|
then
|
|
ecode=1
|
|
`dirname $0`/analyze_ecl_failure.sh ${COMPARE_ECL_COMMAND} UNRST ${RESULT_PATH}/${FILENAME} ${RESULT_PATH}/mpi/${FILENAME} ${ABS_TOL} ${REL_TOL}
|
|
fi
|
|
|
|
exit $ecode
|