Scheduled Downtime
On Tuesday 24 October 2023 @ 5pm MT the forums will be in read only mode in preparation for the downtime. On Wednesday 25 October 2023 @ 5am MT, this website will be down for maintenance and expected to return online later in the morning.
Normal Operations
The forums are back online with normal operations. If you notice any issues or errors related to the forums, please reach out to help@ucar.edu

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
 
Top