www/opencl.html
ImageMagick has built-in support for some OpenCL accelerated operations. However, there are some conditions for its operation. These requirements are listed below.
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
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 \*/ }