7
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

[Linux / Ubuntu] GPUの種類(フルネーム)を確認する【名前が途切れる人向け】

Last updated at Posted at 2021-01-18

nvidia-smiコマンドだと名前が途中で途切れて確認できない事態が発生したので、GPUの名前をフルで確認する方法をメモ

一般的な確認方法

nvidia-smiコマンドです。

$ nvidia-smi
Mon Jan 18 11:21:55 2021
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 440.33.01    Driver Version: 440.33.01    CUDA Version: 10.2     |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|===============================+======================+======================|
|   0  GeForce RTX 208...  On   | 00000000:01:00.0 Off |                  N/A |
| 19%   18C    P8    20W / 250W |    726MiB / 11019MiB |      1%      Default |
+-------------------------------+----------------------+----------------------+

+-----------------------------------------------------------------------------+
| Processes:                                                       GPU Memory |
|  GPU       PID   Type   Process name                             Usage      |
|=============================================================================|
|    0      1347      G   /usr/lib/xorg/Xorg                           284MiB |
|    0      1583      G   /usr/bin/gnome-shell                         220MiB |
|    0      2505      G   ...AAAAAAAAAAAACAAAAAAAAAA= --shared-files   168MiB |
|    0      5053      G   ...-token=85BF5FDE73E6204E060ECC896FA5C999    49MiB |
+-----------------------------------------------------------------------------+

 

……GeForce RTX 2080なのかTiなのかがわからん!

GPUのフルネームを確認する

$ nvidia-smi --query-gpu=name --format=csv

です。

$ nvidia-smi --query-gpu=name --format=csv
name
GeForce RTX 2080 Ti

という風に、GPUのフルネームがわかります。

7
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?