我怎么知道我是否在使用 GPU?

Ébe*_*aac 5 system graphics intel-graphics gpu system-settings

如何在 Ubuntu (14.04) 中找出处理器是否有 GPU?我浏览了一些链接,结果如下所示,适用于我的系统规格。

$ lspci | grep VGA
00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller (rev 06)

$ lscpu
Architecture:          x86_64
CPU op-mode(s):        32-bit, 64-bit
Byte Order:            Little Endian
CPU(s):                8
On-line CPU(s) list:   0-7
Thread(s) per core:    2
Core(s) per socket:    4
Socket(s):             1
NUMA node(s):          1
Vendor ID:             GenuineIntel
CPU family:            6
Model:                 60
Stepping:              3
CPU MHz:               1067.484
BogoMIPS:              7183.17
Virtualization:        VT-x
L1d cache:             32K
L1i cache:             32K
L2 cache:              256K
L3 cache:              8192K
NUMA node0 CPU(s):     0-7
Run Code Online (Sandbox Code Playgroud)

这是详细信息部分中显示的内容。

在此处输入图片说明

那么鉴于上述细节,系统是否包含 GPU?

Ram*_*and 2

图形处理单元(GPU),有时也称为视觉处理单元(VPU),您还可以使用它来查看其输出:

lspci -vnn | grep VGA -A 12

Or 

lshw -numeric -C display or video
Run Code Online (Sandbox Code Playgroud)

或者

lspci | grep -E "VGA|3D"
Run Code Online (Sandbox Code Playgroud)

输出:

05:07.0 VGA compatible controller: XGI Technology Inc. (eXtreme Graphics    Innovation) Z7/Z9 (XG20 core)
Run Code Online (Sandbox Code Playgroud)