Everything you need to start running work on the cluster. For task-focused guides — remote desktop, Jupyter Lab, H.E.S.S. analysis and more — see the docs.
Fill in the account request form with your name, department and intended use of the cluster.
The HPC admin team reviews requests and provisions your username and an SSH key pair. Approval typically takes up to 24 hours.
Use the credentials you receive by email to log in to the head node from your terminal.
Load the modules you need and submit your workload to the scheduler instead of running it directly on the login node.
ssh -i ~/.ssh/unam_hpc_key <username>@uhpc.unam.na
Never share your private key. Report a lost or compromised key to uhpc@unam.na immediately.
scp -i ~/.ssh/unam_hpc_key myfile.dat \ <username>@uhpc.unam.na:~/data/
Large datasets should go to your ~/data directory on the
shared storage rack, not your home directory.
module avail module load python/3.11 module load openmpi
sbatch my_job.slurm squeue -u <username> scancel <job_id>
Please submit compute-heavy work through the scheduler — the login node is shared by everyone.