From 598b23f1045f1dcb3a62882ce93149dfef5cf3e9 Mon Sep 17 00:00:00 2001 From: Logan Hunt Date: Wed, 8 Dec 2021 18:52:57 -0700 Subject: Reset timing study script --- mpi/timing-study/timing_study.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mpi/timing-study/timing_study.sh b/mpi/timing-study/timing_study.sh index 4076257..91f3c90 100644 --- a/mpi/timing-study/timing_study.sh +++ b/mpi/timing-study/timing_study.sh @@ -1,9 +1,9 @@ #!/bin/bash #SBATCH --time=0:20:00 # walltime, abbreviated by -t -#SBATCH --nodes=1 # number of cluster nodes, abbreviated by -N +#SBATCH --nodes=24 # number of cluster nodes, abbreviated by -N #SBATCH -o slurm-%j.out-%N # name of the stdout, using the job number (%j) and the first node (%N) #SBATCH -e slurm-%j.err-%N # name of the stderr, using job and first node values -#SBATCH --ntasks=1 # number of MPI tasks, abbreviated by -n +#SBATCH --ntasks=2 # number of MPI tasks, abbreviated by -n # additional information for allocated clusters #SBATCH --account=usucs5030 # account - abbreviated by -A #SBATCH --partition=kingspeak # partition, abbreviated by -p @@ -15,9 +15,9 @@ module load intel mpich iterations=1000 -for cores in 1 #12 16 20 24 +for cores in 1 4 8 12 16 20 24 do - for size in 1000 1250 1500 1750 2000 #250 500 750 1000 1250 1500 1750 2000 + for size in 250 500 750 1000 1250 1500 1750 2000 do mpirun -np $cores ./gol simulate random $size $size $iterations 1 > timing-study/output-$cores-$iterations-$size.txt done -- cgit v1.2.3-70-g09d2