#! /bin/bash echo "Preparing:" set -x # Output commands set -e # Abort on errors cd @RUNDIR@-active echo "Checking:" pwd hostname date echo "Environment:" export OMP_NUM_THREADS=@NUM_THREADS@ # These are the primary SMT hardware threads when the OS is set in SMT4: # export TARGET_CPU_LIST="0,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60,64,68,72,76,80,84,88,92,96,100,104,108,112,116,120,124" export TARGET_CPU_LIST=-1 export TOOLDIR=/home/gbauer/ibm/tools/bin env | sort > SIMFACTORY/ENVIRONMENT echo "Starting:" /usr/bin/poe ${TOOLDIR}/hybrid_launch ${TOOLDIR}/reporter_MPIOMP export CACTUS_STARTTIME=$(date +%s) /usr/bin/poe ${TOOLDIR}/hybrid_launch @EXECUTABLE@ -L 3 @PARFILE@ echo "Stopping:" date echo "Done."