User Tools

Site Tools


nvtop-software

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
nvtop-software [2022/06/27 13:15] aorthnvtop-software [2023/10/13 09:49] (current) – Remove nvtop because it is in EPEL 8 now aorth
Line 1: Line 1:
-====== nvtop ====== 
  
-NVIDIA GPUs htop like monitoring tool. 
- 
-===== Information ===== 
- 
-  * Version: 2.0.2 
-  * Added: August, 2021 
-  * Updated: June, 2022 
-  * Link: https://github.com/Syllo/nvtop 
- 
-===== Usage ===== 
- 
-See which versions of nvtop are available: 
-<code>$ module avail nvtop</code> 
- 
-Load one version into your environment and run it: 
-<code>$ module load nvtop/2.0.2 
-$ nvtop</code> 
- 
-**Note:** this only works on systems that have an NVIDIA GPU such as compute06. 
- 
-===== Installation ====== 
- 
-Notes from the sysadmin during installation: 
- 
-<code>$ git clone https://github.com/Syllo/nvtop.git -b 2.0.2 
-$ mkdir -p nvtop/build && cd nvtop/build 
-$ cmake .. -DNVIDIA_SUPPORT=ON -DCMAKE_BUILD_TYPE=Release 
-$ make 
-$ sudo mkdir -p /export/apps/nvtop/2.0.2/bin 
-$ sudo cp src/nvtop /export/apps/nvtop/2.0.2/bin 
-$ sudo cp ../LICENSE /export/apps/nvtop/2.0.2 
-$ sudo chown -R root:root /export/apps/nvtop/2.0.2</code>