72 lines
2.2 KiB
Bash
Executable File
72 lines
2.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
hostname=$(hostname)
|
|
|
|
|
|
|
|
|
|
if [[ "isc17" == ${hostname:0:5} ]]; then
|
|
export MODULEPATH=/gsfs/jtacquaviva/software/modules:$MODULEPATH
|
|
module purge
|
|
module load ddn/mvapich/3.1.4
|
|
module load root/hdf5/1.10.4
|
|
#module load root/ior/git-20181107
|
|
module load root/ior/git-20181123
|
|
#module list
|
|
export TD="/gsfs/jtacquaviva/testfiles"
|
|
export WD="/gsfs/jtacquaviva/git/ddn-ime-evaluation/benchmark"
|
|
export NODES=( c02 c03 c04 c05 c06 c08 c09 c11 c12 c13 c14 c15 c18 c22 c23 c01 c16 c17 c21 )
|
|
|
|
elif [[ "m" == ${hostname:0:1} ]]; then
|
|
. /sw/rhel6-x64/tcl/modules-3.2.10/Modules/3.2.10/init/sh
|
|
export MODULEPATH=$MODULEPATH:/work/ku0598/k202107/software/modules
|
|
module purge
|
|
module load intel/18.0.2
|
|
module load fca/2.5.2431
|
|
module load mxm/3.4.3082
|
|
module load bullxmpi_mlx_mt/bullxmpi_mlx_mt-1.2.9.2
|
|
module load k202107/hdf5/1.10.4
|
|
module load k202107/ior/git-20181108
|
|
#module list
|
|
export TD="/mnt/lustre01/work/ku0598/k202107/git/ddn-ime-evaluation/benchmark/wd"
|
|
export WD="/mnt/lustre01/work/ku0598/k202107/git/ddn-ime-evaluation/benchmark"
|
|
export NODES=()
|
|
else
|
|
echo "Configuration failed: Cluster $hostname is not supported. Quitting."
|
|
exit 1
|
|
fi
|
|
|
|
|
|
|
|
# Provides a list of good hosts (that contains QDR connection)
|
|
function hosts() {
|
|
num="$1"
|
|
hlist=${NODES[0]}
|
|
for POS in $(seq 1 $(($num - 1))) ; do
|
|
hlist="$hlist,${NODES[$POS]}"
|
|
done
|
|
echo $hlist
|
|
}
|
|
|
|
|
|
# Lustre cache on DDN cluster ist 32108MB. Test file has to be at least twice as large therefore: DATASIZE = 76800MB
|
|
#DATASIZE=$((4800 * 1024 * 1024 * 16))
|
|
DATASIZE=$((48000 * 1024 * 1024 * 16))
|
|
|
|
#COUNT_ARR=( $(seq 3) )
|
|
COUNT_ARR=( 1 2 3 )
|
|
TYPE_ARR=( "write" )
|
|
API_ARR=( "IME") # "MPIIO" "IME" ) #
|
|
FS_ARR=( "ime") # "gpfs" "fuse" "ime"
|
|
NN_ARR=( 8 4 2 1 14 16 )
|
|
#NN_ARR=( 2 1 4 )
|
|
PPN_ARR=( 8 4 1 )
|
|
T_ARR=( $((10*1024*1024)) $((1*1024*1024)) $((100*1024)) $((16*1024)) )
|
|
|
|
export IOR="$(which ior)"
|
|
export MPIEXEC="$(which mpiexec)"
|
|
|
|
type ior >/dev/null 2>&1 || { echo >&2 "I require ior but it's not installed. Aborting."; exit 1; }
|
|
type mpiexec >/dev/null 2>&1 || { echo >&2 "I require mpiexec but it's not installed. Aborting."; exit 1; }
|