web-dev-qa-db-ja.com

GPUを使用しているかどうかを確認するにはどうすればよいですか?

プロセッサーにGPUがあるかどうかをUbuntu(14.04)で調べる方法は?私はいくつかのリンクをたどりましたが、結果は私のシステム仕様について以下のとおりです。

$ 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

これは詳細セクションに表示されるものです。

enter image description here

上記の詳細を考えると、システムにはGPUが含まれていますか?

5
Ébe Isaac

グラフィック処理ユニット(GPU)、視覚処理ユニット(VPU)とも呼ばれます。出力を表示するために使用することもできます。

lspci -vnn | grep VGA -A 12

Or 

lshw -numeric -C display or video

または

lspci | grep -E "VGA|3D"

出力:

05:07.0 VGA compatible controller: XGI Technology Inc. (eXtreme Graphics    Innovation) Z7/Z9 (XG20 core)
2
Ramesh Chand