Submit Job Scripts - Templates¶
Simple Job Script¶
#!/bin/bash
#SBATCH -p PARTITION #Name of the Partition to use
#SBATCH --nodelist=NODENAME #Name of the Node to be allocated
#SBATCH -J JOB-NAME #Job name
#----------------------------------------------------------------------------#
##path to executable code
EXEC=/lustre/t0/scratch/users/YOUR.USER/EXECUTABLE.CODE
srun $EXEC
EUPS Load Script¶
#!/bin/bash
#SBATCH -p PARTITION #Name of the Partition to use
#SBATCH --nodelist=NODENAME #Name of the Node to be allocated
#SBATCH -J JOB-NAME #Job name
#----------------------------------------------------------------------------#
#Carregar o EUPS
. /mnt/eups/linea_eups_setup.sh
#Carregar pacote
setup <PACKAGE> <VERSION>
##path to executable code
EXEC=/lustre/t0/scratch/users/YOUR.USER/EXECUTABLE.CODE
srun $EXEC
Parallel Submit Job Script¶
OpenMP¶
MPI¶
Última atualização:
30 de abril de 2025