...
To access the command shell use SSH; to upload files use SFTP or SCP:
Host: login.hpc.lab
Port: 22
Credentials : your Florida Poly username and password
[Liam, I don’t understand the following.]
Submitting jobs to the LSF (use bsub)
Compile the hello_world example code provided by default
/opt/ibm/platform_mpi/bin/mpicc -o hello_world.exe /opt/ibm/platform_mpi/help/hello_world.c
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"
Check the output of the %J.out file to verify results
...