我的 GPU - 具体型号是什么?它能用吗?它是集成的吗?

我的 GPU - 具体型号是什么?它能用吗?它是集成的吗?

标题是问题的完整描述。lspci 和 neofetch 输出。我找不到我的 GPU 的确切型号,因为输出neofetch显示了太多配置。哪一个是正确的?

我跟着此链接。情况和我的情况很相似,但所有的答案都无济于事。

如果您想反对该问题,请留下评论,我可以在其中找到有关此事的更多信息。

nroot@SP7:/etc/apt$ lspci

00:00.0 Host bridge: Intel Corporation Xeon E3-1200 v6/7th Gen Core Processor Host Bridge/DRAM Registers (rev 08)
00:02.0 VGA compatible controller: Intel Corporation UHD Graphics 620 (rev 07)
00:14.0 USB controller: Intel Corporation Sunrise Point-LP USB 3.0 xHCI Controller (rev 21)
00:14.2 Signal processing controller: Intel Corporation Sunrise Point-LP Thermal subsystem (rev 21)
00:15.0 Signal processing controller: Intel Corporation Sunrise Point-LP Serial IO I2C Controller #0 (rev 21)
00:16.0 Communication controller: Intel Corporation Sunrise Point-LP CSME HECI #1 (rev 21)
00:17.0 SATA controller: Intel Corporation Sunrise Point-LP SATA Controller [AHCI mode] (rev 21)
00:1c.0 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port #1 (rev f1)
00:1c.4 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port #5 (rev f1)
00:1c.5 PCI bridge: Intel Corporation Sunrise Point-LP PCI Express Root Port #6 (rev f1)
00:1f.0 ISA bridge: Intel Corporation Sunrise Point LPC Controller/eSPI Controller (rev 21)
00:1f.2 Memory controller: Intel Corporation Sunrise Point-LP PMC (rev 21)
00:1f.3 Audio device: Intel Corporation Sunrise Point-LP HD Audio (rev 21)
00:1f.4 SMBus: Intel Corporation Sunrise Point-LP SMBus (rev 21)
01:00.0 Display controller: Advanced Micro Devices, Inc. [AMD/ATI] Topaz XT [Radeon R7 M260/M265 / M340/M360 / M440/M445 / 530/535 / 620/625 Mobile] (rev c3)
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 10)
03:00.0 Network controller: Qualcomm Atheros QCA9377 802.11ac Wireless Network Adapter (rev 31)

nroot@SP7:/etc/apt$ neofetch

OS: Ubuntu 20.04 LTS x86_64 
Host: 81DE Lenovo ideapad 330-15IKB 
Kernel: 5.4.0-33-generic 
Uptime: 1 hour, 15 mins 
Packages: 1979 (dpkg), 10 (snap) 
Shell: bash 5.0.16 
Resolution: 1920x1080 
DE: GNOME 
WM: Mutter 
WM Theme: Adwaita 
Theme: Yaru-dark [GTK2/3] 
Icons: Flat-Remix-Blue-Dark [GTK2/3] 
Terminal: guake 
CPU: Intel i5-8250U (8) @ 3.400GHz 
GPU: Intel UHD Graphics 620 
GPU: AMD ATI Radeon R7 M260/M265 / M340/M360 / M440/M445 / 530/535 / 620/625 Mobile 
Memory: 2584MiB / 7868MiB 

编辑: nroot@SP7:/etc/apt$ DRI_PRIME=1 glxinfo | grep OpenGL

OpenGL vendor string: X.Org
OpenGL renderer string: AMD ICELAND (DRM 3.35.0, 5.4.0-33-generic, LLVM 9.0.1)
OpenGL core profile version string: 4.6 (Core Profile) Mesa 20.0.4
OpenGL core profile shading language version string: 4.60
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile
OpenGL core profile extensions:
OpenGL version string: 4.6 (Compatibility Profile) Mesa 20.0.4
OpenGL shading language version string: 4.60
OpenGL context flags: (none)
OpenGL profile mask: compatibility profile
OpenGL extensions:
OpenGL ES profile version string: OpenGL ES 3.2 Mesa 20.0.4
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.20
OpenGL ES profile extensions:

答案1

您有混合图形。

集成 GPU 是Intel UHD Graphics 620

独立 GPU 是AMD ATI Radeon R7 M260/M265 / M340/M360 / M440/M445 / 530/535 / 620/625 Mobile

您可以通过运行以下命令检查 AMD GPU 是否正常工作

DRI_PRIME=1 glxinfo | grep OpenGL

根据您的输出,它是一个AMD ICELAND芯片,并且可以工作。

它应该是R7 M260

答案2

关于识别专用显卡的部分,我有一个类似的故事(在 Ubuntu 20.04 上)。无论我如何检查,我的系统都将我的专用显卡识别为以下某个变体或子集:

超微半导体公司 [AMD/ATI] Cape Verde PRO / Venus LE / Tropo PRO-L [Radeon HD 8830M / R7 250 / R7 M465X]

这是因为当前的开源驱动程序(随系统自动安装)radeon可以识别它。

但这只是一种笼统的识别。我认为这就像驱动程序基于功能和兼容性所能假设的最接近的匹配。有了这个驱动程序,这似乎最接近我的 Linux 系统可以揭示的关于这张卡的信息。

但是我的戴尔笔记本电脑有服务标签,在戴尔支持网站上提交此服务标签使人们能够下载包含特定设备硬件的精确列表的电子表格(实际上是 CSV 文件)。

这就是我如何得知我的显卡实际上是一个AMD FirePro W5130M

研究该卡的技术信息在这个网站上,看来这位敞篷司机已经非常接近完成身份识别了。

但是,有了准确的名称,我就可以弄清楚半开放、可选安装的amdgpu-pro驱动程序与该卡具有直接声明的兼容性;它位于列表中:

amdgpu-pro 驱动程序兼容性图表

此时,我开始考虑是否要安装,amdgpu-pro以期获得更高的性能、稳定性和/或更好的处理能力。

相关内容