-
Notifications
You must be signed in to change notification settings - Fork 2
JASMIN Tips
Ting Sun edited this page Mar 8, 2019
·
6 revisions
This page collects tips for using JAMSIN cluster. General docs of JASMIN can be found here: https://help.jasmin.ac.uk
If you see a Segmentation fault error
after a short time of running wrf.exe, there is a possibility (not always) that there is an insufficient stack memory. A possible fix for this problem is:
ulimit -s unlimited
Ref: GH23
The following script will submit your job to queue par-multi
and ask for 120
cores (i.e, -n
) for a task no longer than 8.5 hrs (i.e., -W
).
#!/bin/bash
#BSUB -q par-multi
#BSUB -n 120
#BSUB -o %J.out
#BSUB -e %J.err
#BSUB -W 08:30
echo "Running WRF"
mpirun ./wrf.exe
Ref: