nvidia-smi 대신에 nvtop을 쓰자! GPU의 htop 느낌!
글 작성자: 만렙개발자
nvtop은 NVIDIA GPU의 작업을 모니터링하는 툴입니다. 멀티 GPU를 처리하고, htop과 같이 익숙한 방식으로 GPU에 대한 정보를 확인할 수 있습니다. 다수의 GPU를 사용하고, 작업 상태를 확인하기 위해서는 필수겠죠?! :)
설치 방법은 간단합니다!
sudo apt install nvtop
혹시 오래된 ubuntu 버전을 사용하고 계시다면, 아래의 설치 방법을 이용해 주세요 :)
sudo apt 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
make install # You may need sufficient permission for that (root)
'📚 딥딥러닝' 카테고리의 다른 글
댓글
이 글 공유하기
다른 글
-
nvidia driver, CUDA 업그레이드 문제 해결
nvidia driver, CUDA 업그레이드 문제 해결
2020.06.09 -
Detectron2 trained model load (architecture and weights) from config and checkpoints
Detectron2 trained model load (architecture and weights) from config and checkpoints
2020.05.12 -
[책 추천] 친절한 실전 딥러닝 수업
[책 추천] 친절한 실전 딥러닝 수업
2020.03.25 -
딥러닝 대용량 학습을 위한 구글 코랩과 클라우드 스토리지의 조합 (Google Colab with Amazon S3 | AWS Amazon EC2 EBS | Google Storage | Transfer)
딥러닝 대용량 학습을 위한 구글 코랩과 클라우드 스토리지의 조합 (Google Colab with Amazon S3 | AWS Amazon EC2 EBS | Google Storage | Transfer)
2020.03.08