Rāpoi login node is identified by the machine name raapoi-login
:
RAAPOI_USERNAME@raapoi-login:~$ # type your commands here!
All other machines are compute nodes. These can be listed with vuw-partitions
or sinfo -Nel
Special purpose machines to run your code/program/application. To get access to a compute node interactively:
RAAPOI_USERNAME@raapoi-login:~$ srun -t0-00:10:00 --pty bash
A job name will be assigned and the machine will change to one of the compute machines.
RAAPOI_USERNAME@**amd01n01**:~$ # type your commands here!
<aside> 💡
You can experiment further with srun parameters to request any of the available compute nodes. For example, srun -pgpu -wgpu01 -t0-00:10:00 --mem=500M --pty bash
to request gpu01
node in gpu
partition for 10 mins
and 500MB
</aside>