-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create slurm job submission scripts for timings
- Loading branch information
1 parent
190f631
commit aeab4fe
Showing
6 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
#SBATCH --nodes=16 | ||
#SBATCH --time=12:00:00 | ||
#SBATCH --account=nstaff | ||
#SBATCH --qos=regular | ||
#SBATCH --constraint=cpu | ||
#SBATCH --cpus-per-task=1 | ||
|
||
ml OpenCoarrays | ||
for i in {1..3}; do | ||
for n in {1..16}; do | ||
fpm run --compiler gfortran-workaround.sh --flag "-O3 -fcoarray=lib" --example lu_decomp --runner "srun --nodes=${n} --ntasks=${n} --cpu-bind=cores" -- example/lu_decomp/100x100.dat | ||
done | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
#SBATCH --nodes=16 | ||
#SBATCH --time=02:00:00 | ||
#SBATCH --account=nstaff | ||
#SBATCH --qos=regular | ||
#SBATCH --constraint=cpu | ||
#SBATCH --cpus-per-task=1 | ||
|
||
ml PrgEnv-cray | ||
for i in {1..3}; do | ||
for n in {1..16}; do | ||
fpm run --compiler crayftn-workaround.sh --flag "-O3" --example lu_decomp --runner "srun --nodes=${n} --ntasks=${n} --cpu-bind=cores" -- example/lu_decomp/100x100.dat | ||
done | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
#SBATCH --nodes=1 | ||
#SBATCH --ntasks=1 | ||
#SBATCH --time=02:00:00 | ||
#SBATCH --account=nstaff | ||
#SBATCH --qos=regular | ||
#SBATCH --constraint=cpu | ||
#SBATCH --cpus-per-task=1 | ||
|
||
ml OpenCoarrays | ||
for i in {1..3}; do | ||
for n in {1..100}; do | ||
fpm run --compiler gfortran-workaround.sh --flag "-O3 -fcoarray=lib" --example lu_decomp --runner srun -- example/lu_decomp/${n}x${n}.dat | ||
done | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
#SBATCH --nodes=1 | ||
#SBATCH --ntasks=1 | ||
#SBATCH --time=02:00:00 | ||
#SBATCH --account=nstaff | ||
#SBATCH --qos=regular | ||
#SBATCH --constraint=cpu | ||
#SBATCH --cpus-per-task=1 | ||
|
||
ml PrgEnv-cray | ||
for i in {1..3}; do | ||
for n in {1..100}; do | ||
fpm run --compiler crayftn-workaround.sh --flag "-O3" --example lu_decomp --runner srun -- example/lu_decomp/${n}x${n}.dat | ||
done | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
#SBATCH --nodes=1 | ||
#SBATCH --time=24:00:00 | ||
#SBATCH --account=nstaff | ||
#SBATCH --qos=regular | ||
#SBATCH --constraint=cpu | ||
#SBATCH --cpus-per-task=1 | ||
|
||
ml OpenCoarrays | ||
for i in {1..3}; do | ||
for n in {1..16}; do | ||
fpm run --compiler gfortran-workaround.sh --flag "-O3 -fcoarray=lib" --example lu_decomp --runner "srun --ntasks=${n} --cpu-bind=cores" -- example/lu_decomp/100x100.dat | ||
done | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
#SBATCH --nodes=1 | ||
#SBATCH --time=02:00:00 | ||
#SBATCH --account=nstaff | ||
#SBATCH --qos=regular | ||
#SBATCH --constraint=cpu | ||
#SBATCH --cpus-per-task=1 | ||
|
||
ml PrgEnv-cray | ||
for i in {1..3}; do | ||
for n in {1..16}; do | ||
fpm run --compiler crayftn-workaround.sh --flag "-O3" --example lu_decomp --runner "srun --ntasks=${n} --cpu-bind=cores" -- example/lu_decomp/100x100.dat | ||
done | ||
done |