Skip to content

Instantly share code, notes, and snippets.

@larsvilhuber
Created March 31, 2016 20:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save larsvilhuber/eb8287ca5516ab5b39218bd97875cca2 to your computer and use it in GitHub Desktop.
Save larsvilhuber/eb8287ca5516ab5b39218bd97875cca2 to your computer and use it in GitHub Desktop.
An example SAS job requesting about 32GB and 4 CPUs might be
#!/bin/bash -l
#PBS -l mem=32768mb
#PBS -l ncpus=4
#PBS -l walltime=12:00:00
source /etc/profile.d/modules.sh
module load sas
cd $PBS_O_WORKDIR
sas -memsize 32000m -cpucount 4 myprog.sas
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment