Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The HPC cluster uses the university site license for SAS, w More information is available here: https://software.uconn.edu/software/sas/ .

...

You can view a list of all available MATLAB apptainer versions with:

Code Block
module avail apptainer

...

To submit a job that uses a single core to run a MatLab SAS file TestClustermyprog.msas. Create a script called matlabSPsasSP.sh:

Code Block
#!/bin/bash
#SBATCH --ntasks=1
#SBATCH --output=outputfile.txt
#SBATCH --error=outputfile.txt

module load apptainer
apptainer exec --unsquash -H $HOME:/home -B /gpfs/sharedfs1/admin/hpc2.0/apps/sas/9.4:/gpfs/sharedfs1/admin/hpc2.0/apps/sas/9.4 SAS.sif /gpfs/sharedfs1/admin/hpc2.0/apps/sas/9.4/SASFoundation/9.4/sas myprog.sas

...

Then submit the script:

Code Block
 sbatch sasSP.sh

...