如何找出我拥有的NVIDIA GPU


13

我正在尝试使用页面中的信息来优化我的GPU性能。为此,我需要知道我拥有哪个NVIDIA GPU。

我尝试了该命令sudo lshw -C display,但得到的输出不是很有帮助:

*-display:0 UNCLAIMED   
       description: VGA compatible controller
       product: GD 5446
       vendor: Cirrus Logic
       physical id: 2
       bus info: pci@0000:00:02.0
       version: 00
       width: 32 bits
       clock: 33MHz
       capabilities: vga_controller bus_master
       configuration: latency=0
       resources: memory:e8000000-e9ffffff memory:ee080000-ee080fff
  *-display:1
       description: VGA compatible controller
       product: NVIDIA Corporation
       vendor: NVIDIA Corporation
       physical id: 3
       bus info: pci@0000:00:03.0
       version: a1
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress vga_controller bus_master cap_list rom
       configuration: driver=nvidia latency=64
       resources: irq:28 memory:ec000000-ecffffff memory:e0000000-e7ffffff memory:ea000000-ebffffff ioport:c100(size=128) memory:ee000000-ee07ffff

有人可以向我指出如何准确找出我拥有的NVIDIA GPU吗?

谢谢,吉尔

Answers:


17

请使用以下命令更新您的PCI ID数据库:

sudo update-pciids

并在终端中使用以下命令:

lspci -nn | grep '\[03'

您将看到图形卡的型号名称。如果模棱两可,则可以在Internet上搜索PCI ID(类似[10de:11bc])以获取相应的型号名称。


24

如果已安装,则还可以使用nvidia-smi它为NVIDIA GPU提供更多信息(毕竟,这是它们在您链接的页面中使用的信息):

$ nvidia-smi

Mon Sep 15 16:02:31 2014       
+------------------------------------------------------+                       
| NVIDIA-SMI 340.32     Driver Version: 340.32         |                       
|-------------------------------+----------------------+----------------------+
| 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 GT 650M     Off  | 0000:01:00.0     N/A |                  N/A |
| N/A   59C    P0    N/A /  N/A |      8MiB /  2047MiB |     N/A      Default |
+-------------------------------+----------------------+----------------------+

+-----------------------------------------------------------------------------+
| Compute processes:                                               GPU Memory |
|  GPU       PID  Process name                                     Usage      |
|=============================================================================|
|    0            Not Supported                                               |
+-----------------------------------------------------------------------------+

如果只需要GPU名称:

$ nvidia-smi --query-gpu=name --format=csv,noheader
GeForce GT 650M

3

可以通过将lspci命令与grep结合使用来找到大多数内容。

使用以下命令列出了大多数GPU的型号名称:

lspci | grep VGA

2

另一种选择是使用程序nvclock。它提供了许多选项,主要用于对卡(内存和GPU)进行超频和温度/风扇控制,但是还提供了一个信息选项,可为您提供所用芯片的确切架构 nvclock -i

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.