OpenCL

ImageMagick has built-in support for some OpenCL accelerated operations. However, there are some conditions for its operation. These requirements are listed below.

  1. GPU platform: AMD or Intel GPUs are supported. NVIDIA support is not enabled at the moment.
  2. OS and drivers:
    • Mac OS X: has built-in support for OpenCL. No other actions required.
    • Linux/Windows: on supported platforms, install required drivers to enable OpenCL.
    • Mobile: ImageMagick's OpenCL support is not available on mobile OSes (IOS/Android).
  3. Compile-time flag: ImageMagick's OpenCL must be explicitly enabled when compiling. This is done by running configure with --enable-opencl flag set.
  4. Check runtime support: to verify if OpenCL support is enabled, run magick --version. The command output should read Features: ... OpenCL ...
  5. Runtime flag: OpenCL is disabled by default in runtime. To enable it use the environment variable MAGICK_OCL_DEVICE=true, e.g. MAGICK_OCL_DEVICE=true magick <options>.
  6. Command line utility: for proper OpenCL support it's recommended to use magick utility over convert, mogrify and others.
  7. Image type: OpenCL acceleration only works on images without a color map. Use true color images instead.
  8. Operators: the following is a list of image operators that have been OpenCL accelerated.
      blur
      contrast
      charcoal
      function
      grayscale
      motion-blur
      resize
    The following operators are OpenCL accelerated as well, but they require alpha channel to be enabled, e.g. magick sample.jpg -alpha on -despeckle null:.
      despeckle
      equalize
      modulate

OpenCL Operation Notes

When some of the OpenCL accelerated operators are invoked for the first time and all the conditions above are met, ImageMagick conducts a series of tests to configure the OpenCL environment according to the system hardware; therefore, it is normal to experience a higher latency the first time you use an accelerated option. The OpenCL kernels are embedded inside ImageMagick in source format. During the initial setup, ImageMagick discovers all the available OpenCL devices and compiles the kernels for each of these targets. ImageMagick also runs several performance tests internally to determine the preferred device to use. The compiled kernel code and the performance test results are stored into the cache directory so that the data can be reused by subsequent invocations of the OpenCL path. By default, the OpenCL cached data is stored in $HOME/.cache/ImageMagick on Linux and on MacOSX or in %LOCALAPPDATA%\ImageMagick on Windows. To run these tests for the first time, use the command below:

MAGICK_OCL_DEVICE=true magick sample.jpg -blur 0x5 null:

On Windows the MAGICK_OCL_DEVICE=true part should be removed and the command set MAGICK_OCL_DEVICE=true should be executed before executing the command above to enable OpenCL operations.

To change the cache directory, set the MAGICK_OPENCL_CACHE_DIR environment variable. ImageMagick is able to detect hardware changes, driver updates, and new kernel sources and re-run the setup and the calibration test. You can also force ImageMagick to re-run the process by removing the content from the cache directory.

In addition to the environment variables mentioned above, ImageMagick provides a set of APIs that allow developers to gain more fine-grained control of the OpenCL acceleration. For example, use the InitializeOpenCL() function to initialize the OpenCL environment:

clEnv=GetCurrentOpenCLEnv();
if (InitializeOpenCL(clEnv,exception) == MagickFalse)
  {
    /* looks like OpenCL is not supported  */
  }