GULP¶
The General Utility Lattice Program (GULP) is designed to perform a variety of tasks based on force field methods.
GULP is available as a module on Apocrita.
Usage¶
To run the default version of GULP, simply load the gulp module.
module load gulp
gulp
Example job¶
Serial job¶
Here is an example job running on 1 core and 2GB of memory:
#!/bin/bash
#SBATCH -n 1 # (or --ntasks=1) Request 1 core
#SBATCH --mem-per-cpu=2G # Request 2GB RAM per core (2G total)
#SBATCH -t 1:0:0 # Request 1 hour runtime
module load gulp
gulp < INPUTFILE > OUTPUTFILE