22

I have a PC with a:

VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Venus XT [Radeon HD 8870M / R9 M270X/M370X] [1002:6821] (rev ff) (prog-if ff)

How can I get OpenCL to work on it? I'm not offered a proprietary driver in the Software sources tool, and AFAIK it isn't supported on 16.04 anymore.

clinfo currently lists zero devices.

Andreas Hartmann
  • 2,613
  • 7
  • 29
  • 47
  • 1
    Look here http://askubuntu.com/a/815592/231142. I have tried the oibaf's PPA solution and it worked for me for getting AMD support working on my laptop. – Terrance Feb 17 '17 at 19:09
  • 1
    This Blog provides a solution that worked on my PC (AMD FirePro M4000 + Ubuntu 16.04). – Booo Jul 22 '17 at 20:29

1 Answers1

28

When clinfo shows "Number of platforms 0", you probably did not installed an ICD which is needed to use OpenCL-Products (like an Graphics card from AMD).

Use "sudo apt install mesa-opencl-icd" for a possible solution.

TTorai
  • 296