Execute a program that has been linked with Sun S3L just as you would any other program compiled for running on a Sun HPC System.
To submit such an application to the LSF Batch system, use the LSF bsub command. For example,
% bsub -q hpc -n 4 hpc.job
submits the executable hpc.job to the batch queue hpc and requests that it run on four processors. The LSF Batch system will launch hpc.job as soon as it reaches the top of the queue and all required resources become available.
Refer to the Sun MPI 4.0 User's Guide: With LSF and the LSF Batch User's Guide for complete instructions on submitting Sun HPC jobs to the LSF Batch system.
To submit hpc.job to the Sun HPC Cluster Runtime Environment (CRE), use the mprun command. For example,
% mprun -np 4 hpc.job
submits hpc.job to the CRE and requests that it run on four processes.
Refer to the Sun MPI 4.0 User's Guide: With CRE for additional information.