Reset timing study script

This commit is contained in:
Logan Hunt 2021-12-08 18:52:57 -07:00
parent 6e56533c3d
commit 598b23f104

View File

@ -1,9 +1,9 @@
#!/bin/bash #!/bin/bash
#SBATCH --time=0:20:00 # walltime, abbreviated by -t #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 -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 -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 # additional information for allocated clusters
#SBATCH --account=usucs5030 # account - abbreviated by -A #SBATCH --account=usucs5030 # account - abbreviated by -A
#SBATCH --partition=kingspeak # partition, abbreviated by -p #SBATCH --partition=kingspeak # partition, abbreviated by -p
@ -15,9 +15,9 @@ module load intel mpich
iterations=1000 iterations=1000
for cores in 1 #12 16 20 24 for cores in 1 4 8 12 16 20 24
do 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 do
mpirun -np $cores ./gol simulate random $size $size $iterations 1 > timing-study/output-$cores-$iterations-$size.txt mpirun -np $cores ./gol simulate random $size $size $iterations 1 > timing-study/output-$cores-$iterations-$size.txt
done done