Gaussian is a computational chemistry software package which works on electronic structure. This section illustrates how to submit a small Gaussian job to a Slurm queue. This Gaussian example runs the Fletcher-Powell multivariable optimization.
#!/bin/bash#SBATCH -A accountname # Queue name; use the 'slist' command to find queue names#SBATCH --nodes=1 # Total number of nodes#SBATCH --ntasks=64 # Total number of MPI tasks#SBATCH --gpus-per-node=1 # Total number of GPUs#SBATCH --time=1:00:00 # Total run time limit (hh:mm:ss)#SBATCH -J myjobname # Job name#SBATCH -o myjob.o%j # Name of stdout output file#SBATCH -e myjob.e%j # Name of stderr error file#SBATCH --partition=a10#SBATCH --mem=8Gmoduleloadgaussian16
g16<myjob.com