forked from bgmiller100/rasr
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrasr_TACC
27 lines (25 loc) · 1 KB
/
rasr_TACC
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/bash
#----------------------------------------------------
# Sample Slurm job script
# for TACC Lonestar6 AMD Milan nodes
#
# *** Serial Job in Normal Queue***
#
# Last revised: May 5, 2022
#
# Notes:
#
# -- For running rasr queue
#----------------------------------------------------
#SBATCH -J rasr_TACC # Job name
#SBATCH -o rasr_TACC.o%j # Name of stdout output file
#SBATCH -e rasr_TACC.e%j # Name of stderr error file
#SBATCH -p normal # Queue (partition) name
#SBATCH -N 1 # Total # of nodes (must be 1 for serial)
#SBATCH -n 1 # Total # of mpi tasks (should be 1 for serial)
#SBATCH -t 10:30:00 # Run time (hh:mm:ss)
#SBATCH --mail-type=all # Send email at begin and end of job
#SBATCH -A MSS21024 # Project/Allocation name (req'd if you have more than 1)
#SBATCH [email protected]
# Launch serial code...
bash /work/07965/clans/ls6/Spring_RASR/run/rasr_activator # Do not use ibrun or any other MPI launcher