45
What is a good way to benchmark test a GPU in Linux?
(sopuli.xyz)
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
I'm using Linux Mint and I'm just using the drivers that were preinstalled by the distro. If it's possible that Mint installed the wrong drivers somwhow, I wouldn't know where to look to get help with that.
It might be using the integrated GPU...
Try and install
lshw
and runsudo lshw -numeric -C display
and give us the output.Edit...
Or
glxinfo | grep "OpenGL vendor|OpenGL renderer"
It is using the integrated GPU, it's a laptop that only has an integrated GPU. Also, lshw is having the same problem it had with my old computer, where it doesn't seem to list the right clock speed and just says it's running at 33Mhz. I know this is wrong because on my old computer, other software would state the clock speed was much higher. But another thing I'm noticing that's wrong is the GPU is listed as an R3 when the GPU is actually an R2, so unless they share drivers, It's possible that Mint (I'm using Linux Mint) installed the wrong drivers.
I was kinda hoping I'd see something obvious but I am not a great troubleshooter, more of try things to see what works...
You can still use the Phoronix thing for testing the GPU:
.deb
from https://phoronix-test-suite.com/releases/repo/pts.debian/files/phoronix-test-suite_10.8.4_all.deb and installphoronix-test-suite install unigine-heaven
phoronix-test-suite run unigine-heaven
But perhaps something else is interfering.
What does
sudo apt list --installed | grep -i radeon
show?Unigine-heaven was available by itself and it worked but I've never benchmark tested anything before. The settings I used was low graphics, full screened to the custom resolution of 1360x768 (the resolution of the monitor I use) and everything else was disabled. The frame rate ranged from 12 to 26 (or at least somewhere around that), does that seem good for an AMD Radeon R2 Graphics?
Also that command returns this: `WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
libdrm-radeon1/jammy-updates,now 2.4.113-2~ubuntu0.22.04.1 amd64 [installed] xserver-xorg-video-radeon/jammy-updates,now 1:19.1.0-2ubuntu1 amd64 [installed] `
🤷♂️ all I can say is the drivers are installed.
Perhaps there is a Xorg option that needs to be modified or set a kernel parameter. Sorry I can't help anymore.
Even though it is Mint, the advice on the ArchWiki might help you out.
https://wiki.archlinux.org/title/AMDGPU#Loading says that it should use the
amdgpu
driver so that is something to look into.Good luck!
I just tried glxinfo but it didn't do anything and unless it's called something else, apt can't locate the package.
I think it is in the
mesa-utils
package but that doesn't matter...your other answer provided some more info