run-ibm.csh for blueice

Hi CAM users,

I was wondering whether somebody has run-ibm.csh for blueice. I used to run the "run-ibm.csh" on bluesky without problems and I get many error messages when modifying and running on blueice.

I checked the CAM homepage, but could not find equivalent run-ibm.csh for blueice. I would appraeciate if somebody can point me out in a direction to get one.

Regards,
Bala
 

mvr

Member
the most recent version of the release code (cam3.1.p2) has updates to the run-ibm.csh
script for running on bluevista...this can be easily modified for running on blueice...

bluevista settings (will request 1 node with 4 mpi tasks per node)
#BSUB -n 4
#BSUB -R "span[ptile=4]"

blueice settings (will request 1 node with 8 mpi tasks per node)
#BSUB -n 8
#BSUB -R "span[ptile=8]"

with these settings, you'll want OMP_NUM_THREADS=4 to optimize
your resources with mpi and open-mp...

also, these machines now require a wall clock limit and an account number
#BSUB -W 0:10 # wall clock limit
#BSUB -P # account number

hope that helps,
-mathew
 
Back
Top