GPU Profiling with nvtop
Reference Links
- Blog - Use nvtop rather than nvidia-smi (Korean) Offering command to install nvtop via apt-get or github source
sudo apt-get install nvtop
# If it is not work, follow the belows
sudo apt-get install cmake libncurses5-dev libncursesw5-dev git
git clone https://github.com/Syllo/nvtop.git && \
mkdir -p nvtop/build && cd nvtop/build && \
cmake ..
# If it errors with "Could NOT find NVML (missing: NVML_INCLUDE_DIRS)"
# try the following command instead, otherwise skip to the build with make.
# cmake .. -DNVML_RETRIEVE_HEADER_ONLINE=True
make
sudo make install