Skip to content

JASMIN Tips

Ting Sun edited this page Mar 8, 2019 · 6 revisions

JASMIN Tips

This page collects tips for using JAMSIN cluster. General docs of JASMIN can be found here: https://help.jasmin.ac.uk


Q: Runing WRF: Stack memory problem

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


Q: What does a sample bsub script look like?

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:

  1. GH25
  2. https://help.jasmin.ac.uk/article/113-submit-jobs