The context is the following:
ImageMagick:
Code: Select all
twitt2 imagemagick # convert -version
Version: ImageMagick 6.6.2-0 2010-05-25 Q8 http://www.imagemagick.org
Copyright: Copyright (C) 1999-2010 ImageMagick Studio LLC
Features: HDRI OpenCL
Code: Select all
twitt2 imagemagick # gcc -v
Using built-in specs.
Target: x86_64-pc-linux-gnu
Configured with: /var/tmp/portage/sys-devel/gcc-4.4.2/work/gcc-4.4.2/configure --prefix=/usr --bindir=/usr/x86_64-pc-linux-gnu/gcc-bin/4.4.2 --includedir=/usr/lib/gcc/x86_64-pc-linux-gnu/4.4.2/include --datadir=/usr/share/gcc-data/x86_64-pc-linux-gnu/4.4.2 --mandir=/usr/share/gcc-data/x86_64-pc-linux-gnu/4.4.2/man --infodir=/usr/share/gcc-data/x86_64-pc-linux-gnu/4.4.2/info --with-gxx-include-dir=/usr/lib/gcc/x86_64-pc-linux-gnu/4.4.2/include/g++-v4 --host=x86_64-pc-linux-gnu --build=x86_64-pc-linux-gnu --disable-altivec --disable-fixed-point --without-ppl --without-cloog --enable-nls --without-included-gettext --with-system-zlib --disable-checking --disable-werror --enable-secureplt --enable-multilib --enable-libmudflap --disable-libssp --enable-libgomp --enable-cld --with-python-dir=/share/gcc-data/x86_64-pc-linux-gnu/4.4.2/python --enable-objc-gc --enable-languages=c,c++,java,objc,obj-c++,fortran --enable-shared --enable-threads=posix --enable-__cxa_atexit --enable-clocale=gnu --with-bugurl=http://bugs.gentoo.org/ --with-pkgversion='Gentoo 4.4.2 p1.0'
Thread model: posix
gcc version 4.4.2 (Gentoo 4.4.2 p1.0)
Code: Select all
02:00.0 VGA compatible controller: nVidia Corporation GT200b [GeForce GTX 275] (rev a1)
Code: Select all
NVRM: loading NVIDIA UNIX x86_64 Kernel Module 195.36.24 Thu Apr 22 19:10:14 PDT 2010
Code: Select all
eric@twitt2 ~ $ convert barbara_gold1.bmp -convolve '-1, -1, -1, -1, 9, -1, -1, -1, -1' convolve.png
convert: failed to create OpenCL context `barbara_gold1.bmp' (-32) @ warning/accelerate.c/GetConvolveInfo/499.
I would like to know which compiler (and/or optional libs) was used to test the accelerate.c and, probably, there should be a warning if IM is compiled with a compiler that doesn't actually implement the OpenCL API (I must admit I didn't expect the code to compile under plain GCC but it did!)... As I don't think GCC has native support for OpenCL, what should be added?
Thanks!