...
Notice the bash prompt changed from username@login02
to username@c008,
indicating we are on node c008 now. We can now use the following commands to view information about our job
CPU Usage - top
Code Block |
---|
top -u $USER ##This will show the CPU and Memory of our job |
...
This shows the processes and their CPU / Memory usage. CPU usage is a percentage. 100% CPU is 1 CPU core, so if a process is using 8 cores it may say 800%, or list 8 processes at 100%
Press q
to quit out of top
GPU Usage - nvtop
Code Block |
---|
nvtop ## This will display GPU usage for our job, this only works on GPU nodes |
...