quantum-espresso/test-suite/run-pw.sh

50 lines
1.7 KiB
Bash
Executable File

#!/bin/bash
#
# Copyright (C) 2001 Quantum ESPRESSO
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License. See the file `License' in the root directory
# of the present distribution.
if [ $QE_USE_MPI == 1 ]; then
export PARA_PREFIX="mpirun -np ${TESTCODE_NPROCS}"
export PARA_POSTFIX=" "
else
unset PARA_PREFIX
unset PARA_POSTFIX
fi
#echo $0" "$@
# Additional stuff before run special test-cases
if test "$1" = "vdw1.in" || test "$1" = "vdw2.in" ; then
if ! test -f ${ESPRESSO_PSEUDO}/vdW_kernel_table ; then
echo -n "Generating kernel table - May take several minutes..."
${PARA_PREFIX} ${ESPRESSO_ROOT}/PW/src/generate_vdW_kernel_table.x
mv vdW_kernel_table ${ESPRESSO_PSEUDO}/
echo "kernel table generated in ${ESPRESSO_PSEUDO}/vdW_kernel_table"
fi
fi
if test "$1" = "vdw6.in" ; then
if ! test -f ${ESPRESSO_PSEUDO}/rVV10_kernel_table ; then
echo -n "Generating kernel table - May take several minutes..."
${PARA_PREFIX} ${ESPRESSO_ROOT}/PW/src/generate_rVV10_kernel_table.x
mv rVV10_kernel_table ${ESPRESSO_PSEUDO}/
echo "kernel table generated in ${ESPRESSO_PSEUDO}/rVV10_kernel_table"
fi
fi
if test "$1" = "plugin-pw2casino_1.in" ; then
export PARA_POSTFIX="$PARA_POSTFIX --pw2casino"
fi
if test "$1" = "plugin-pw2casino_2.in" ; then
export PARA_POSTFIX="$PARA_POSTFIX --pw2casino"
fi
# echo "${PARA_PREFIX} ${ESPRESSO_ROOT}/bin/pw.x ${PARA_POSTFIX} -input $1 > $2 2> $3"
${PARA_PREFIX} ${ESPRESSO_ROOT}/bin/pw.x ${PARA_POSTFIX} -input $1 > $2 2> $3
rm -f input_tmp.in