Use this file to discover all available pages before exploring further.
This walkthrough takes you from a fresh HPCC account to a running job in about ten minutes. You’ll log in, load a module, submit a minimal SLURM job, and read its output.
Prerequisites: An approved HPCC account. If you don’t have one, start with Accounts & access.
If you’re off-campus and connections fail, confirm you’re reaching an externally accessible gateway (Chizen or Karle only). All other systems require you to go through one of those first.
Home and scratch are separate. Home is small and durable; scratch is larger and temporary. Check both:
df -h ~ # your home directory (/global/u/<username>)df -h /scratch/$USER # your scratch workspace
The default home quota is 50 GB / 10,000 files. Jobs must run out of scratch; don’t launch from your home directory.See Storage & quotas for full details.
The HPCC uses the LMOD environment module system on Arrow. Browse what’s available:
module avail # list all available modulesmodule spider python # search for Python variants and their dependenciesmodule list # show what's currently loaded
Load the module you want:
module load Python/3.10.4 # exact version string may differ; check module avail
The minimal template above omits --qos and --partition, which real HPCC jobs typically require (for example --qos=qoschem --partition=partchem). Ask your PI or the HPC Helpline which QOS / partition applies to your project before submitting production work.