Blame MpiApps/apps/run_hpl2

Packit 857059
#!/bin/sh
Packit 857059
# BEGIN_ICS_COPYRIGHT8 ****************************************
Packit 857059
# 
Packit 857059
# Copyright (c) 2015, Intel Corporation
Packit 857059
# 
Packit 857059
# Redistribution and use in source and binary forms, with or without
Packit 857059
# modification, are permitted provided that the following conditions are met:
Packit 857059
# 
Packit 857059
#     * Redistributions of source code must retain the above copyright notice,
Packit 857059
#       this list of conditions and the following disclaimer.
Packit 857059
#     * Redistributions in binary form must reproduce the above copyright
Packit 857059
#       notice, this list of conditions and the following disclaimer in the
Packit 857059
#       documentation and/or other materials provided with the distribution.
Packit 857059
#     * Neither the name of Intel Corporation nor the names of its contributors
Packit 857059
#       may be used to endorse or promote products derived from this software
Packit 857059
#       without specific prior written permission.
Packit 857059
# 
Packit 857059
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Packit 857059
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit 857059
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Packit 857059
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
Packit 857059
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit 857059
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Packit 857059
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Packit 857059
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Packit 857059
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Packit 857059
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 857059
# 
Packit 857059
# END_ICS_COPYRIGHT8   ****************************************
Packit 857059
Packit 857059
# [ICS VERSION STRING: unknown]
Packit 857059
Packit 857059
# BASE PATH TO MPI EXECUTABLES: To use an alternate location,
Packit 857059
# either edit this line or set MPICH_PREFIX in your environment.
Packit 857059
# see select_mpi for the set of default MPI selections
Packit 857059
# default to MPI used for build
Packit 857059
MPICH_PREFIX=${MPICH_PREFIX:-`cat .prefix 2>/dev/null`}
Packit 857059
Packit 857059
trap "exit 1" SIGHUP SIGTERM SIGINT
Packit 857059
Packit 857059
if [ -z "$1" ]
Packit 857059
then 
Packit 857059
	echo " Usage: run_hpl number_processes"
Packit 857059
	echo " For example: ./run_hpl2 2"
Packit 857059
	echo "number_processes may be 'all' in which case one rank will be started for"
Packit 857059
	echo "every process in the mpi_hosts file"
Packit 857059
	exit 1
Packit 857059
fi
Packit 857059
Packit 857059
NUM_PROCESSES=$1
Packit 857059
APP=xhpl2
Packit 857059
LOGFILE=
Packit 857059
. ./prepare_run
Packit 857059
Packit 857059
CC=`./get_mpi_cc.sh`
Packit 857059
ARCH=`uname -s`
Packit 857059
HPL_DIR="${PWD}/hpl-2.2/bin/ICS.${ARCH}.${CC}"
Packit 857059
HPL_CMD="./xhpl"
Packit 857059
Packit 857059
if [ $USING_MPD = y ]
Packit 857059
then
Packit 857059
    MPI_RUN_CMD_HPL="$MPI_RUN_CMD -wdir $HPL_DIR"
Packit 857059
else
Packit 857059
    MPI_RUN_CMD_HPL="$MPI_RUN_CMD"
Packit 857059
fi
Packit 857059
Packit 857059
(
Packit 857059
	echo " Running High Performance Computing Linkpack Benchmark (HPL) ..."
Packit 857059
	show_mpi_hosts
Packit 857059
	set -x
Packit 857059
	cd $HPL_DIR; $MPI_RUN_CMD_HPL $HPL_CMD
Packit 857059
	set +x
Packit 857059
) 2>&1 | tee -i -a $LOGFILE
Packit 857059
echo "########################################### " >> $LOGFILE