Code: Select all
$ convert -size 99x99 caption:"t" -border 1x1 t.png
convert: clBuildProgram failed. (-11) @ warning/opencl.c/CompileOpenCLKernels/1097.
convert: clCreateCommandQueue failed. (0) @ warning/opencl.c/InitOpenCLEnvInternal/1424.
I'm on 64bit Arch Linux. I'm running xf86-video-ati 1:7.7.0-1 as my driver (open source AMD graphics card drivers).
I'm used to these drivers causing lots of problems, so at first I wanted to just find a way to disable OpenCL - which works - but thought the error might be worthy of reporting, simply because it seems that disabling OpenCL in my case for the problematic commands seems to increase performance significantly:
Code: Select all
$ time convert -size 800x600 caption:"test" -border 200x200 t.png
convert: clBuildProgram failed. (-11) @ warning/opencl.c/CompileOpenCLKernels/1097.
convert: clCreateCommandQueue failed. (0) @ warning/opencl.c/InitOpenCLEnvInternal/1424.
real 0m3.785s
user 0m3.793s
sys 0m0.073s
$ time convert -size 800x600 caption:"test" -border 200x200 t.png
convert: clBuildProgram failed. (-11) @ warning/opencl.c/CompileOpenCLKernels/1097.
convert: clCreateCommandQueue failed. (0) @ warning/opencl.c/InitOpenCLEnvInternal/1424.
real 0m3.815s
user 0m3.793s
sys 0m0.100s
$ time convert -size 800x600 caption:"test" -border 200x200 t.png
convert: clBuildProgram failed. (-11) @ warning/opencl.c/CompileOpenCLKernels/1097.
convert: clCreateCommandQueue failed. (0) @ warning/opencl.c/InitOpenCLEnvInternal/1424.
real 0m3.782s
user 0m3.787s
sys 0m0.077s
$ time MAGICK_OCL_DEVICE=OFF convert -size 800x600 caption:"test" -border 200x200 t.png
real 0m1.571s
user 0m1.597s
sys 0m0.053s
$ time MAGICK_OCL_DEVICE=OFF convert -size 800x600 caption:"test" -border 200x200 t.png
real 0m1.574s
user 0m1.583s
sys 0m0.073s
$ time MAGICK_OCL_DEVICE=OFF convert -size 800x600 caption:"test" -border 200x200 t.png
real 0m1.570s
user 0m1.573s
sys 0m0.073s
Code: Select all
convert -size 1299x9329 caption:"t" -border 2131x1231 t.png
Code: Select all
Distro 4.6.3-1-ARCH x86_64
Mainboard FOXCONN A7GM-S 2.0
CPU AMD Phenom(tm) 9550 Quad-Core Processor
4 x 2200 MHz, 64-bit
RAM 7.8G
Video Radeon HD 7750/8740 / R7 250E
OpenGL 4.1 (Core Profile) Mesa 11.2.2, GLSL 1.30
GCC gcc (GCC) 6.1.1 20160707
EDIT: I upgraded to opencl-mesa 12.0.1-1 (was 11.2.2-1 before) and can not reproduce errors or time differences any more. Marking thread as invalid.