Mox uses a scheduler called SLURM. SLURM is similar to but different from the PBS based scheduler used on hyak classic.
Below xyz is your hyak group name and abc is your UW netid.
To logon:
ssh moxabc@mox.hyak.uw.edu
To see the various partitions (aka allocations):
...
To get an interactive node in your own group. Here xyz is your group name.
srun -p xyz --pty /bin/bash
To submit a batch job:
sbatch -p xyz -A xyz myscript.slurm
The script myscript.slurm is similar to myscript.pbs used in hyak classic.
#!/bin/bash
## Job Name
#SBATCH --job-name=myjob
## Resources
## Nodes
#SBATCH --nodes=1
## Walltime (3 hours)
#SBATCH --time=3:00:00
## Memory per node
#SBATCH --mem=30G
## Specify the working directory for this job
#SBATCH --workdir=/gscratch/xyz/abc/myjobdir
More details are here:
...