視訊卡是一種特殊的電路板,用於控制電腦監視器上顯示的內容。它也稱為圖形處理單元(GPU),可為Linux遊戲和其他用途計算3D圖像和圖形。讓我們來看看解決問題的7大Linux GPU監控和診斷命令列工具。
以下工具可在Linux上用於GPU監視和診斷目的,以及其他作業系統(例如FreeBSD)上運作。如今,大多數Linux和FreeBSD用戶都使用Nvidia,Intel和AMD GPU。
Linux GPU監控與診斷命令列工具
我們可以使用以下工具來監控、診斷和檢查基於Linux或*BSD的系統。
取得圖形處理器資訊只需運行:
linuxmi@linuxmi:~/www.linuxmi.com$ sudo lshw -C display -short
[sudo] linuxmi 的密碼:
輸出如下:
H/W path Device Class Description ================================================================= /0/100/f display SVGA II Adapter
linuxmi@linuxmi:~/www.linuxmi.com$ lspci -v | more
1、glmark2 –在Linux上對GPU效能進行壓力測試
glmark2是OpenGL 2.0和ES 2.0基準命令列實用程式。我們可以輸入如下命令安裝它:
linuxmi@linuxmi:~/www.linuxmi.com$ sudo apt install glmark2
現在,如下運行:
linuxmi@linuxmi:~/www.linuxmi.com$ glmark2
然後它將開始如下測試,並將在Linux上對您的GPU進行壓力測試:
Linux glmark2測試畫面
我的基準結果,運行在Ubuntu Linux 20.04 LTS:
** GLX does not support GLX_EXT_swap_control or GLX_MESA_swap_control! ** Failed to set swap interval. Results may be bounded above by refresh rate. ======================================================= glmark2 2014.03+git20150611.fa71af2d ======================================================= OpenGL Information GL_VENDOR: Mesa/X.org GL_RENDERER: llvmpipe (LLVM 11.0.0, 256 bits) GL_VERSION: 3.1 Mesa 20.2.1 ======================================================= ** GLX does not support GLX_EXT_swap_control or GLX_MESA_swap_control! ** Failed to set swap interval. Results may be bounded above by refresh rate. [build] use-vbo=false: FPS: 150 FrameTime: 6.667 ms ** GLX does not support GLX_EXT_swap_control or GLX_MESA_swap_control! ** Failed to set swap interval. Results may be bounded above by refresh rate. [build] use-vbo=true: FPS: 164 FrameTime: 6.098 ms ** GLX does not support GLX_EXT_swap_control or GLX_MESA_swap_control! ** Failed to set swap interval. Results may be bounded above by refresh rate. [texture] texture-filter=nearest: FPS: 190 FrameTime: 5.263 ms ** GLX does not support GLX_EXT_swap_control or GLX_MESA_swap_control! ** Failed to set swap interval. Results may be bounded above by refresh rate. [texture] texture-filter=linear: FPS: 172 FrameTime: 5.814 ms ======================================================= glmark2 Score: 169 =======================================================
2.、glxgears –簡單的Linux GPU效能測試工具
它將顯示一組旋轉齒輪並定期列印出幀頻。它已成為Linux和類似FreeBSD的類Unix系統的基本基準測試工具,非常受歡迎。如下安裝並運行它:
linuxmi@linuxmi:~/www.linuxmi.com$ sudo apt install mesa-utils
linuxmi@linuxmi:~/www.linuxmi.com$ glxgears
每五秒鐘測量一次GPU幀速率並將其發佈在螢幕上。最終結果將如下所示:
4005 frames in 5.0 seconds = 800.123 FPS
1348 frames in 5.0 seconds = 269.529 FPS
1259 frames in 5.0 seconds = 251.788 FPS
1047 frames in 5.0 seconds = 209.265 FPS
651 frames in 5.0 seconds = 130.198 FPS
651 frames in 5.0 seconds = 130.070 FPS
759 frames in 5.0 seconds = 151.732 FPS
……
3、一個在Linux和FreeBSD Unix上取得Nvidia GPU統計資料的簡單工具
它是用Python寫的,是CLI用戶,特別是ML/AI開發人員的完美工具。可以使用PIP安裝它,如下:
linuxmi@linuxmi:~/www.linuxmi.com
#pip3 install gpustat如下運行:
linuxmi@linuxmi:~/www.linuxmi.com$ gpustat
linuxmi@linuxmi:~/www.linuxmi.com$ gpustat -cp
查看幫助:
linuxmi@linuxmi:~/www.linuxmi.com$ gpustat -h
4、intel_gpu_top – 在Linux上顯示英特爾GPU使用情況的類似top的摘要
先安裝工具,運行:
linuxmi@linuxmi:~/www.linuxmi.com$ sudo apt install intel-gpu-tools
## CentOS / RHEL / Fedora Linux用戶嘗試dnf指令##linuxmi@linuxmi:~/www.linuxmi.com$ sudo dnf install intel-gpu-tools
Fedora,RHEL和CentOS Linux使用者可以使用podman指令進行以下安裝:
linuxmi@linuxmi:~/www.linuxmi.com$ podman run –rm –priviledged registry.freedesktop.org/drm/igt-gpu-tools/igt:master
該工具使用i915和其他平台驅動程式(如RAPL(電源)和Uncore IMC(記憶體頻寬))公開的效能效能計數器(PMU)收集資料。在Linux系統上按以下方式運行它:
linuxmi@linuxmi:~/www.linuxmi.com$ sudo intel_gpu_top
5、nvidia-smi – NVIDIA系統管理介面程式
linuxmi@linuxmi:~/www.linuxmi.com$sudo apt install nvidia-smi
打開終端,然後運行:
linuxmi@linuxmi:~/www.linuxmi.com nvidia-smi -q -g 0 -d UTILIZATION -l 1
linuxmi@linuxmi:~/www.linuxmi.com sudo nvidia-smi
\6. nvtop – NVIDIA GPU top
另一個很棒但非常有用的NVIDIA GPU工具。與htop指令或top指令類似,它是用於NVIDIA GPU的基於ncurses的GPU狀態檢視器。我們可以如下安裝:
linuxmi@linuxmi:~/www.linuxmi.com
# apt install nvtop ## 執行此攻擊 linuxmi@linuxmi:~/www.linuxmi.com
nvtop
###7、radeontop –顯示Linux上AMD GPU利用率的工具###查看您的AMD GPU利用率,包括總活動百分比和Linux上的單一區塊。如下安裝:
linuxmi@linuxmi:~/www.linuxmi.com
#sudo radeontop#它可以與R600和更高的GPU配合使用,即使Southern Islands應該也可以正常工作。與開源AMD驅動程式和AMD Catalyst克隆來源驅動程式一起使用。
總結 您現在已經了解了用於在Linux和基於BSD系統上監視和診斷目的的各種Linux GPU命令和工具。如果我錯過了你最喜歡的工具,請在下面的評論區告訴我。謝謝。以上就是教程網為各位朋友分享的Linu系統相關內容。想要了解更多Linux相關知識記得關注公眾號“Linux”,或掃描下方二維碼進行關注,更多乾貨等著你 ! ### ###以上是7大Linux GPU監控與診斷命令列工具的詳細內容。更多資訊請關注PHP中文網其他相關文章!