Page 1 of 1

7900xtx showing as not supported

Posted: Sun Nov 10, 2024 2:01 pm
by lukas_foukal
I'm new to folding and have a 7900xtx sitting in an Ubuntu machine running Ollama. I would like to help a good cause when it's idle (most of the time).

I downloaded 8.3.18 and set it up (it's headless, had to edit config.xml).

Now I see "Unsupported GPU" in the cloud webui. Otherwise it looks to run CPU jobs fine.

The drivers and ROCm are clearly working-enough for Ollama to work, so any idea what is even happening?

Maybe this is the dumbest thing ever, but I already burried an hour installing everything and have to get on with other things.

Thanks for any pointers!

Re: 7900xtx showing as not supported

Posted: Sun Nov 10, 2024 8:30 pm
by muziqaz
in console:

Code: Select all

lspci -nnv
Look for GPU if it is saying amdgpu
Then

Code: Select all

clinfo
See if opencl platform and device are fully shown

Code: Select all

su apt install rocm-opencl-sdk
If that package is not available, then download amd driver for your ubuntu version from AMD.com, run

Code: Select all

amdgpu-install
It will add some Radeon repos (but something tells me that is already there for you).
retry

Code: Select all

su apt install rocm-open-sdk
If all above is already installed (and/or clinfo is showing full platform and device):

Code: Select all

sudo usermod -a -G video yourusername

Code: Select all

sudo usermod -a -G render yourusername
reboot