Commit 4015ba23 authored by iker_martin's avatar iker_martin
Browse files

Minor changes to Exec scripts for debugging

parent 169ef7a2
...@@ -10,7 +10,8 @@ dirM="${dirCG}../SparseMatrix" ...@@ -10,7 +10,8 @@ dirM="${dirCG}../SparseMatrix"
export dirCG export dirCG
#matrix="Queen_4147.rb" #matrix="Queen_4147.rb"
#matrix="audikw_1.rb" #matrix="audikw_1.rb"
matrix="bcsstk01.rsa" #matrix="bcsstk01.rsa"
matrix="bcsstk17.rsa"
module load /home/martini/MODULES/modulefiles/mpich-4.0.3-ofi module load /home/martini/MODULES/modulefiles/mpich-4.0.3-ofi
......
#!/bin/bash #!/bin/bash
#SBATCH -N 1 scriptDir="$(dirname "$0")"
#SBATCH -p P1 source $scriptDir/config.txt
#SBATCH -t 00:10:00 export dirCG
module load /home/martini/MODULES/modulefiles/mpich-4.0.3-ofi
module load /home/martini/MODULES/modulefiles/intel64Only.module
nodelist=$SLURM_JOB_NODELIST nodelist=$SLURM_JOB_NODELIST
nodes=$SLURM_JOB_NUM_NODES nodes=$SLURM_JOB_NUM_NODES
cores=20 cores=20
numP=$1 numP=$1
numC=2 numC=$2
msm=0
mss=2
mrm=1
send_sync=0
initial_nodelist=$(bash BashScripts/createInitialNodelist.sh $numP $cores $nodelist)
echo "Test" echo "Test"
mpirun -hosts $initial_nodelist -np $numP valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --trace-children=yes --log-file=nc.vg.%p ./build/a.out bcsstk01.rsa $numC $msm $mss $mrm $mss $send_sync #mpirun -hosts $initial_nodelist -np $numP valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --trace-children=yes --log-file=nc.vg.%p ./build/a.out bcsstk01.rsa $numC
mpirun -np $numP valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --trace-children=yes --log-file=nc.vg.%p $dirCG/build/a.out ../bcsstk01.rsa $numC
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment