Links for HPC sites
- HPC Website: https://hpc.uark.edu/
- HPC wiki page: https://hpcwiki.uark.edu/doku.php
- HPC portal: https://pinnacle-portal.uark.edu/
Using Python
- Check for available modules:
module avail
- Load python:
module load [module]
- Check python version:
python –version
- Install python packages:
pip install [package] –user
- If pip is not installed:
python get-pip.py
Job Related Commands
- Check cluster queues:
sinfo
- Check job status:
squeue -u [username]
- Submit a job:
sbatch [jobfilename]
- Cancel a job:
scancel [jobid]
- Check details of a job:
scontrol show jobid [jobid]