Migration from ESG HPC: Difference between revisions

From HPCwiki
Jump to navigation Jump to search
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 12: Line 12:
== Example of a job script ==
== Example of a job script ==
   #!/bin/bash
   #!/bin/bash
   #SBATCH --account=99999999  
   #SBATCH --comment=99999999  
   #SBATCH --time=1200
   #SBATCH --time=1200
   #SBATCH --mem=2048
   #SBATCH --mem=2048
Line 20: Line 20:
   #SBATCH --job-name="test slurm"  
   #SBATCH --job-name="test slurm"  
   #SBATCH --nodes=5
   #SBATCH --nodes=5
  #SBATCH --partition=ESG_Low
   #SBATCH --mail-type=ALL
   #SBATCH --mail-type=ALL
   #SBATCH --mail-user=wietse.franssen@wur.nl
   #SBATCH --mail-user=wietse.franssen@wur.nl
 
  ./executable

Latest revision as of 16:01, 15 July 2019

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 --mail-type=ALL
 #SBATCH --mail-user=wietse.franssen@wur.nl
 
 ./executable