SAS

SAS (Statistical Analysis System) is a software suite developed by SAS Institute for advanced analytics, multivariate analyses, business intelligence, data management, and predictive analytics. All computational SAS jobs must be run in the compute node via slurm.

Suppose you have prepared a SAS script, say app.sas

The sample job submission script with Slurm: hpc2_slurm_sas.txt.

Presume you have sas working directory in your hpc1 home, place your sas script and the slurm_sas.txt there.

To submit the job,

sbatch hpc2_slurm_sas.txt

To check your job status,

squeue -u $USER

The output file(app.lst), log file (app.log) and slurm-<jobid>.out will be in the job submission directory.


To cancel the job,

scancel <jobid>