...
Submitting a Job
Linux binaries
You'll submit jobs through bsub and mpi.
MPI
The Message Passing Interface (MPI) is a library specification that allows the HPC to pass information between its various nodes and clusters.
LSF
IBM® Platform™ LSF® is a powerful workload management platform for demanding, distributed HPC environments. It provides a comprehensive set of intelligent, policy-driven scheduling features that enable you to utilize all of your compute infrastructure resources and ensure optimal application performance.
Submit a job through LSF to test the message passing
bsub -n 10 -R "span[ptile=1]" -o %J.out "/opt/ibm/platform_mpi/bin/mpirun -lsf -vapi /home/(Username)/hello_world.exe; wait"
bsub -n 10 -R "span[ptile=1]"-o ~/hello_world.out "mpirun -lsf -vapi ~/hello_world”
...