Zoidberg is a very powerful server with 4 NVIDIA Telsa K80 GPUs. It is part of the HPC Cluster in name and location only. It's treated as mostly separate, and can be used outside of Slurm. Zoidberg is by far the most powerful HPC node as well, potentially the most powerful machine in the entire CSL.
It can be used to run large machine learning projects that require a lot of power.
First, ssh into TJ's remote access server, using your TJ Username (e.g. 2021jdoe)
ssh tj-username@remote.tjhsst.edu
Afterwards, ssh into zoidberg.
ssh zoidberg
To run machine learning projects with python, it is recommended to set up virtual environments for each project (so each project can use different versions of python packages if needed).
To achieve this, it is best to use Conda on the Zoidberg environment.
Conda is a package management tool that is pretty powerful. If you want to learn more about it, here are the docs for Conda.
conda create -n VENV_NAME python
conda activate VENV_NAME
conda deactivate
conda install PACKAGE_NAME
​
​