Difference between revisions of "Gaussian Job Scripts"
Jump to navigation
Jump to search
Line 25: | Line 25: | ||
input=YOUR_g09_input.com | input=YOUR_g09_input.com | ||
output=YOUR_OUTPUT.log | output=YOUR_OUTPUT.log | ||
− | |||
− | |||
g09 < $input > $output | g09 < $input > $output | ||
</source> | </source> |
Revision as of 14:53, 26 September 2016
The following is a sample bash job submission script. It loads "gaussian" module, which detects the CPU type of the machine on which your job runs and chooses the appropriate version of Gaussian for best performance. If OMP_NUM_THREADS is set, Gaussian will use it for the number of processors unless %nproc or %nprocshared is set in your Gaussian input file.
The number of threads specified to Gaussian via either method above must be consistent with the number of processors in your resource request i.e (nodes=1:ppn=N).
Automatic Processor Detection
#!/bin/bash
#SBATCH --job-name=gaussianjob
#SBATCH --output=gaussian.out
#SBATCH --error=gaussian.err
#SBATCH --mail-type=ALL
#SBATCH --mail-user=YOUR-EMAIL-ADDRESS
#SBATCH --time=01:00:00
#SBATCH --nodes=1
#SBATCH --ntasks=1
#SBATCH --cpus-per-task=4 # number of CPU core to use
#SBATCH --mem-per-cpu=4000
#SBATCH --account=YOUR-GRUOP-NAME
#SBATCH --qos=YOUR-GROUP-NAME
module load gaussian
which g09
input=YOUR_g09_input.com
output=YOUR_OUTPUT.log
g09 < $input > $output