...
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
Submitting a job to LSF
...
using 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
Applications
Spack
You can install applications on our HPC using Spack: a Linux package manager that makes installing scientific software easy. With Spack, you can build a package with multiple versions, configurations, platforms, and compilers, and all of these builds can coexist on the same machine.
...