Check OpenCL Driver

This article demonstrates how to check whether OpenCL driver is installed on your PC.

Select your OS:

  1. Download clinfo Windows binary file.

  2. Launch the Command Prompt by pressing Win + R keys on the keyboard, then type cmd and press Enter.

    ../../../_images/run-cmd-windows.png
  3. Navigate to the directory that contains the downloaded file (clinfo.exe) and execute the following command:

    clinfo -l
    

    This will print a synthetic summary about all OpenCV platforms on the system and the devices they expose.

    ../../../_images/cmd_cl_windows.png

In case the number of platforms is equal to 0 you need to install the OpenCL driver. The simplest way to do this is by installing the latest GPU drivers:

Warning

Support for using AMD compute devices/GPUs is removed due to low usage and OpenCL stability issues in the drivers. It is possible to opt in to run the SDK with an unsupported compute device, by enabling an option in the Config.yml file. However, such a setup may give unexpected results and errors, and is not tested by Zivid.

  1. Open a terminal window by pressing Ctrl + Alt + T keys on the keyboard

    Then execute the following commands:

    sudo apt install -y clinfo
    
    sudo /usr/bin/clinfo
    

    This will print all available information about all OpenCL platforms on the system and the devices they expose. If clinfo doesn’t print anything, you might have to add your user to group Video.

    In case the number of platforms is equal to 0 you need to install the OpenCL driver.

    ../../../_images/no-platforms-ubuntu.png

Version History

SDK

Changes

2.11.0

AMD is no longer recommended. Official support has been removed in SDK, see Enable Unsupported Compute Device for Zivid Software.