blob: 91f3c90d3080f480171870564af4ed300ee6d93c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/bash
#SBATCH --time=0:20:00 # walltime, abbreviated by -t
#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=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
cd $HOME/gol/mpi
mkdir timing-study
module load intel mpich
iterations=1000
for cores in 1 4 8 12 16 20 24
do
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
done
|