Migration from ESG HPC: Difference between revisions
Jump to navigation
Jump to search
Line 12: | Line 12: | ||
== Example of a job script == | == Example of a job script == | ||
#!/bin/bash | #!/bin/bash | ||
#SBATCH -- | #SBATCH --comment=99999999 | ||
#SBATCH --time=1200 | #SBATCH --time=1200 | ||
#SBATCH --mem=2048 | #SBATCH --mem=2048 |
Revision as of 11:51, 8 May 2018
Folders
home folder (200GB limit):
/home/WUR/<user>/
lustre backup folder:
/lustre/backup/WUR/ESG/<user>/
lustre no-backup folder:
/lustre/nobackup/WUR/ESG/<user>/
/DATA folder
/lustre/backup/WUR/ESG/data/
Example of a job script
#!/bin/bash #SBATCH --comment=99999999 #SBATCH --time=1200 #SBATCH --mem=2048 #SBATCH --ntasks=1 #SBATCH --output=output_%j.txt #SBATCH --error=error_output_%j.txt #SBATCH --job-name="test slurm" #SBATCH --nodes=5 #SBATCH --partition=ESG_Low #SBATCH --mail-type=ALL #SBATCH --mail-user=wietse.franssen@wur.nl ./executable