runTrace.sh 993 Bytes
Newer Older
1
2
3
4
5
6
#!/bin/bash

#SBATCH -p P1
#SBATCH -N 1
#SBATCH --exclude=c01,c00,c02

7
8
scriptDir="$(dirname "$0")"
source $scriptDir/build/config.txt
9
10
codeDir="/Codes/build"
resultsDir="/Results"
11
execDir="/Exec"
12
13
14
15
16
17
18
19

nodelist=$SLURM_JOB_NODELIST
nodes=$SLURM_JOB_NUM_NODES
configFile=$1
outIndex=$2

echo "MPICH"

20
numP=$(bash $dir$execDir/BashScripts/getNumPNeeded.sh $configFile 0)
21
22
23
24
25
26
27
28
29

name_res="Extrae_"$nodes"_Test_"$numP
dir_name_res=$dir$resultsDir"/"$name_res

#mpirun -np $numP $dir$codeDir/a.out $configFile $outIndex $nodelist $nodes
srun -n$numP --mpi=pmi2 ./trace.sh $dir$codeDir/a.out $configFile $outIndex $nodelist $nodes

echo "END RUN"
sed -i 's/application called MPI_Abort(MPI_COMM_WORLD, -100) - process/shrink cleaning/g' slurm-$SLURM_JOB_ID.out
30
sed -i 's/Abort(-100)/shrink cleaning/g' slurm-$SLURM_JOB_ID.out
31
32
33
34
35
36
37
38
39
rm hostfile.o$SLURM_JOB_ID

echo "MOVING DATA"
mkdir $dir_name_res
mv a.out.* $dir_name_res
mv TRACE* $dir_name_res
mv set-0/ $dir_name_res
mv R$outIndex* $dir_name_res
echo "JOB ENDED"