blob: 8ff4ddfab3627dbaa423aa61114ab3531c84764e [file] [log] [blame]
#!/bin/sh
# Description:
#
# Runs the benchmark with a minimal problem size in a multiprocessor
# simulator.
#
# Usage:
#
# ./run.sh [NUMPROCS]
#
#Some default values
TARGET=water_nsquared
#Arguments
if [ -n "$1" ]
then
NUMPROCS="$1"
fi
if [ -n "$2" ]
then
INPUTSIZE="$2"
fi
if [ -n "$3" ]
then
echo "Error: Too many arguments!"
echo
head -n11 $0 | tail -n9 | sed 's/#//'
exit 1
fi
#Determine program name, file names & arguments
INPUTFILE="input_${NUMPROCS}"
INPUTTEMPLATE="input.template"
PROGARGS="${NUMPROCS} < ${INPUTFILE}"
PROG="${PARSECDIR}/ext/splash2/apps/${TARGET}/inst/${PARSECPLAT}/bin/${TARGET}"
#Some tests
if [ ! -x "$PROG" ]
then
echo "Error: Binary ${PROG} does not exist!"
exit 1
fi
#Execution
echo Generating input file ${INPUTFILE}...
cat ${INPUTTEMPLATE} | sed s/NUMPROCS/$NUMPROCS/ > ${INPUTFILE}
RUN="$PROG $PROGARGS"
echo "Running $RUN:"
eval $RUN