Detailed explanation of monitoring NVIDIA GPU usage under Linux

Detailed explanation of monitoring NVIDIA GPU usage under Linux

When using TensorFlow for deep learning, insufficient video memory often occurs, so we hope to be able to check the GPU usage at any time. If you have an Nvidia GPU, you can do it with just one line of command on the command line.

1. Display current GPU usage

Nvidia comes with a command line tool called nvidia-smi, which displays video memory usage:

$ nvidia-smi

Output:

nvidia-smi

2. Periodically output GPU usage

But sometimes we want to know not only the GPU usage at a fixed moment, but also its trend. In this case, we want to output it periodically, such as updating the display every 10 seconds. At this time, you need to use the watch command to periodically execute the nvidia-smi command.

Understand the functions of watch:

$ whatis watch
 watch(1) - execute a program periodically, showing output fullscreen

Function: Execute a command periodically and display the output.

The basic usage of watch is:

$ watch [options] command

The most commonly used parameter is -n, which specifies how many seconds to execute the command.

Monitor video memory: We set it to display the video memory status every 10 seconds:

$ watch -n 10 nvidia-smi

The display is as follows:

watch -n 10 nvidia-smi

In this way, as long as the command line window is open, you can refresh it every ten seconds. Isn’t it convenient?

If we want to periodically perform other command line operations, we can simply replace the following nvidia-smi. So Cool !

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Tutorial on Building a Linux GPU Server on CentOS 7

<<:  Summary of Mysql common benchmark commands

>>:  How to calculate the frame rate FPS of web animations

Recommend

Analysis of MySQL crash recovery based on Redo Log and Undo Log

Table of contents MySQL crash recovery process 1....

JavaScript event delegation principle

Table of contents 1. What is event delegation? 2....

How to use CURRENT_TIMESTAMP in MySQL

Table of contents Use of CURRENT_TIMESTAMP timest...

Implementation of TCPWrappers access control in Centos

1. TCP Wrappers Overview TCP Wrappers "wraps...

How to modify the root user password in mysql 8.0.16 winx64 and Linux

Please handle basic operations such as connecting...

Detailed explanation of deploying MySQL using Docker (data persistence)

This article briefly describes how to use Docker ...

In-depth understanding of Vue's plug-in mechanism and installation details

Preface: When we use Vue, we often use and write ...

Detailed Example of JavaScript Array Methods

Table of contents Introduction Creating an Array ...

js realizes packaging multiple pictures into zip

Table of contents 1. Import files 2. HTML page 3....

Tutorial on installing AutoFs mount service under Linux

Whether it is Samba service or NFS service, the m...

MySQL establishes efficient index example analysis

This article uses examples to describe how to cre...

Several ways to implement CSS height changing with width ratio

[Solution 1: padding implementation] principle: I...

Several ways to implement 0ms delay timer in js

Table of contents queueMicrotask async/await Mess...

Analysis of the Principle and Method of Implementing Linux Disk Partition

remember: IDE disk: the first disk is hda, the se...

Implementation of MySQL multi-version concurrency control MVCC

Transaction isolation level settings set global t...