123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- !
- ! settings for QSUB queue
- !
- ! queue system (bsub,loadleveler)
- queue : qsub
- ! passed directly:
- queue.qsub.submit.options :
- ! list of queue options (same for each step):
- queue.qsub.options : N A cwd pe r l S j
- ! job name:
- queue.qsub.option.N : ${job.name}
- ! account:
- !
- ! This "-A co2" is specific to NOAA jet "co2" project
- !
- queue.qsub.option.A : co2
- ! Execute from current working directory
- queue.qsub.option.cwd :
- ! queue and number of processors
- !
- ! These queue names (serial, hcompnew) specific to NOAA jet system.
- ! See function QueueOptions_QSub in base/trunk/bin/submit_tm5_tools.py
- ! to see for how init/run/done steps are implemented.
- !
- queue.qsub.option.pe.init : nserial 1
- queue.qsub.option.pe.run : ncomp ${par.ntask}
- queue.qsub.option.pe.done : nserial 1
- ! run time:
- !
- ! Modify as appropriate for your particular run.
- ! See function QueueOptions_QSub in base/trunk/bin/submit_tm5_tools.py
- ! to see for how init/run/done steps are implemented.
- !
- queue.qsub.option.l.init : h_rt=00:05:00
- !queue.qsub.option.l.run : h_rt=01:30:00
- queue.qsub.option.l.run : h_rt=00:25:00
- queue.qsub.option.l.done : h_rt=00:05:00
- ! Job is restartable.
- queue.qsub.option.r : y
- ! the created scripts are in python:
- queue.qsub.option.S : /usr/bin/python
- ! Join stderr and stdout into one output file.
- queue.qsub.option.j : y
- ! email strategy and mail address:
- !
- ! If you want to use this, add m and M to queue.qsub.options
- !
- queue.qsub.option.m :
- queue.qsub.option.M :
|