diff options
author | Logan Hunt <loganhunt@simponic.xyz> | 2021-12-08 18:38:46 -0700 |
---|---|---|
committer | Logan Hunt <loganhunt@simponic.xyz> | 2021-12-08 18:38:46 -0700 |
commit | 9362bc1591ac20e0f48564f22c77f74e1c8a68e2 (patch) | |
tree | 0d14ff006bcfacdac18f53419617c26fd7d1a83b /mpi/timing-study/timing_study.sh | |
parent | c846568cf28b4d128cf893dc0abb6ccb5ccdcc32 (diff) | |
download | gol-9362bc1591ac20e0f48564f22c77f74e1c8a68e2.tar.gz gol-9362bc1591ac20e0f48564f22c77f74e1c8a68e2.zip |
Finished
Diffstat (limited to 'mpi/timing-study/timing_study.sh')
-rw-r--r-- | mpi/timing-study/timing_study.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mpi/timing-study/timing_study.sh b/mpi/timing-study/timing_study.sh index 04b64ff..4076257 100644 --- a/mpi/timing-study/timing_study.sh +++ b/mpi/timing-study/timing_study.sh @@ -1,9 +1,9 @@ #!/bin/bash -#SBATCH --time=0:10:00 # walltime, abbreviated by -t -#SBATCH --nodes=2 # number of cluster nodes, abbreviated by -N +#SBATCH --time=0:20:00 # walltime, abbreviated by -t +#SBATCH --nodes=1 # 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=24 # number of MPI tasks, abbreviated by -n +#SBATCH --ntasks=1 # 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 4 8 12 16 20 #24 +for cores in 1 #12 16 20 24 do - for size in 250 500 750 1000 1250 1500 1750 2000 + for size in 1000 1250 1500 1750 2000 #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 |