LSF Version 7.3 - Using Platform LSF HPC

bsub -n 12 -R "span[ptile=3]" -a poe mpirun.lsf myjob
If task 6 is an OpenMP job that spawns 4 threads, the job submission is:
bsub -n 20 -R "span[ptile=5]" -a poe mpirun.lsf myjob
A POE job has three tasks: task0, task1, and task2, and
Task
task2 spawns 3 threads. The tasks task0 and task1 run on one node and
task2 runs on the other node. The job submission is:
bsub -a poe -n 6 -R "span[ptile=3]" mpirun.lsf -cmdfile
mycmdfile
where mycmdfile contains:
task0
task1
task2
The order of the tasks in the task geometry specification must match the order of tasks
in
mycmdfile:
setenv LSB_PJL_TASK_GEOMETRY "{(0,1)(2)}"
If the order of tasks in mycmdfile changes, you must change the task geometry
specification accordingly.
For example, if
mycmdfile contains:
task0
task2
task1
the task geometry must be changed to:
setenv LSB_PJL_TASK_GEOMETRY "{(0,2)(1)}"