Question:
Is there a way to run SAS in parallel on a SLURM-based Linux cluster computer using the "job arrays"?
In the below link I have find way to run jobs in parallel but it is not for SAS.
https://rcc.uchicago.edu/docs/running-jobs/array/index.html
Specifically, I need to pass a SLURM environment variable SLURM_ARRAY_TASK_ID from my batch shell script to SAS.
Answer:
To run parallel on SLURM either add:
export SLURM_ARRAY_TASK_ID
to your shell script before starting SAS, or use the -sysparm option to hand SLURM_ARRAY_TASK_ID over on the SAS commandline.
Is there a way to run SAS in parallel on a SLURM-based Linux cluster computer using the "job arrays"?
In the below link I have find way to run jobs in parallel but it is not for SAS.
https://rcc.uchicago.edu/docs/running-jobs/array/index.html
Specifically, I need to pass a SLURM environment variable SLURM_ARRAY_TASK_ID from my batch shell script to SAS.
Answer:
To run parallel on SLURM either add:
export SLURM_ARRAY_TASK_ID
to your shell script before starting SAS, or use the -sysparm option to hand SLURM_ARRAY_TASK_ID over on the SAS commandline.
Comments
Post a Comment