...
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
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
...
To list all available packages:
spack find
To load a package into your environment:
spack load
You can specify a software version as part of the load:
spack load python@3.7.3
loads Python 3.7.3
Python and PIP
If you load Python using Spack (above) you can use PIP to install
...
other modules:
python3 -mpip install matplotlib
Apache Hadoop 2.6.0
Apache Hadoop is a collection of open-source software utilities that facilitate using a network of many computers to solve problems involving massive amounts of data and computation. It provides a software framework for distributed storage and processing of big data using the MapReduce programming model.
...