NVIDIA GPUs htop like monitoring tool.
See which versions of nvtop are available:
$ module avail nvtop
Load one version into your environment and run it:
$ module load nvtop/1.2.2 $ nvtop
Note: this only works on systems that have an NVIDIA GPU such as compute06.
Notes from the sysadmin during installation:
$ sudo yum install cmake3 ncurses-devel git $ cd /tmp $ git clone https://github.com/Syllo/nvtop.git -b 1.2.2 $ mkdir -p nvtop/build && cd nvtop/build $ cmake3 -DCMAKE_BUILD_TYPE=Release .. $ make $ sudo mkdir -p /export/apps/nvtop/1.2.2/bin $ sudo cp src/nvtop /export/apps/nvtop/1.2.2/bin $ sudo cp ../LICENSE /export/apps/nvtop/1.2.2 $ sudo chown -R root:root /export/apps/nvtop/1.2.2